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

:root {
    --primary-color: #FF9B50;
    --primary-dark: #FF8533;
    --primary-light: #FFB570;
    --secondary-color: #FFD4A8;
    --dark-color: #1a1a1a;
    --gray-dark: #2d3748;
    --gray-medium: #4a5568;
    --gray-light: #718096;
    --gray-lighter: #e2e8f0;
    --gray-lightest: #f7fafc;
    --white: #ffffff;
    --success: #48bb78;
    --gradient: linear-gradient(135deg, #FF9B50 0%, #FFB570 100%);
    --gradient-dark: linear-gradient(135deg, #FF8533 0%, #FF9B50 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    color: var(--gray-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--gray-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-medium);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark-color);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--dark-color);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: var(--dark-color);
}

.btn-primary:hover {
    background: var(--gradient-dark);
    box-shadow: 0 4px 12px rgba(255, 155, 80, 0.3);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--dark-color);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--gray-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.icon {
    width: 20px;
    height: 20px;
}

.hero-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--gray-lightest) 0%, var(--white) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    width: fit-content;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark-color);
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.highlight {
    position: relative;
    color: var(--dark-color);
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    right: 0;
    height: 1rem;
    background: var(--primary-color);
    opacity: 0.3;
    z-index: -1;
    border-radius: 0.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-medium);
    line-height: 1.8;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-light);
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease;
    will-change: auto;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: none !important;
}

.platform-section {
    padding: 4rem 0;
    background: var(--dark-color);
    color: var(--white);
}

.platform-content {
    text-align: center;
}

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

.section-title.white {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
}

.section-subtitle.white {
    color: var(--gray-lighter);
}

.platform-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.platform-icon {
    width: 32px;
    height: 32px;
    stroke: var(--primary-color);
}

.platform-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.platform-desc {
    font-size: 0.9rem;
    color: var(--gray-lighter);
}

.features-section {
    padding: 6rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(-50px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.feature-card:nth-child(even) {
    transform: translateX(50px);
}

.feature-card:nth-child(even).visible {
    transform: translateX(0);
}

.feature-card:nth-child(even) .feature-image {
    order: 2;
}

.feature-card:nth-child(even) .feature-content {
    order: 1;
}

.feature-card:hover {
    box-shadow: 0 12px 40px rgba(255, 155, 80, 0.2);
    transform: translateY(-8px) scale(1.02);
}

.feature-image {
    position: relative;
}

.feature-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
    fill: none;
}

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

.feature-description {
    color: var(--gray-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-dark);
}

.feature-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.reports-section {
    padding: 6rem 0;
    background: var(--gray-lightest);
}

.reports-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
}

.reports-image {
    position: sticky;
    top: 100px;
}

.reports-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.reports-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.report-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.report-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.report-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.report-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--dark-color);
}

.report-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.report-description {
    color: var(--gray-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.report-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--gray-lighter);
    color: var(--gray-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.85rem;
}

.export-section {
    margin-top: 3rem;
    text-align: center;
}

.export-card {
    display: inline-block;
    background: var(--white);
    padding: 2rem 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.export-icon {
    width: 48px;
    height: 48px;
    stroke: var(--primary-color);
    margin: 0 auto 1rem;
}

.export-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.export-description {
    color: var(--gray-medium);
    margin-bottom: 1rem;
}

.export-formats {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.format-tag {
    background: var(--gray-lighter);
    color: var(--gray-dark);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
}

.employee-section {
    padding: 6rem 0;
    background: var(--white);
}

.employee-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.employee-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.employee-feature {
    display: flex;
    gap: 1.5rem;
}

.employee-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.employee-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--dark-color);
}

.employee-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.employee-desc {
    color: var(--gray-medium);
    line-height: 1.6;
}

.employee-dashboard {
    background: linear-gradient(135deg, var(--gray-lightest) 0%, var(--white) 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-lighter);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.dashboard-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.performance-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.performance-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.performance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.employee-name {
    font-weight: 600;
    color: var(--gray-dark);
}

.performance-score {
    font-weight: 700;
    color: var(--success);
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: var(--gray-lighter);
    border-radius: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 1rem;
    transition: width 0.3s ease;
}

.performance-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--gray-light);
}

.dashboard-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-lighter);
}

.summary-item {
    text-align: center;
}

.summary-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.summary-label {
    font-size: 0.85rem;
    color: var(--gray-light);
}

.work-stats-banner {
    background: linear-gradient(135deg, rgba(255, 155, 80, 0.1) 0%, rgba(255, 181, 112, 0.1) 100%);
    border: 1px solid rgba(255, 155, 80, 0.2);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.banner-icon {
    width: 48px;
    height: 48px;
    stroke: var(--dark-color);
    margin: 0 auto 1rem;
}

.banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.banner-description {
    color: var(--gray-dark);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-section {
    padding: 6rem 0;
    background: var(--gray-lightest);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-heading:first-child {
    margin-top: 0;
}

.about-paragraph {
    color: var(--gray-medium);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.about-icon {
    width: 24px;
    height: 24px;
    stroke: var(--success);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.about-feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

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

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.download-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-dark) 100%);
    color: var(--white);
}

.download-header {
    text-align: center;
    margin-bottom: 3rem;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.download-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.download-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.download-icon {
    width: 48px;
    height: 48px;
    stroke: var(--primary-color);
    margin: 0 auto 1rem;
}

.download-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.download-description {
    color: var(--gray-lighter);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.download-requirement {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-lighter);
    margin-top: 0.75rem;
}

.trial-banner {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
}

.trial-icon {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
}

.stats-section {
    padding: 4rem 0;
    background: var(--gray-lightest);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    color: var(--gray-medium);
    font-size: 1rem;
}

.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-description {
    color: var(--gray-lighter);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--gray-lighter);
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray-lighter);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact li {
    color: var(--gray-lighter);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: var(--gray-lighter);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--gray-lighter);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .employee-content,
    .about-content {
        grid-template-columns: 1fr;
    }

    .reports-container {
        grid-template-columns: 1fr;
    }

    .reports-image {
        position: relative;
        top: 0;
    }

    .feature-card {
        grid-template-columns: 1fr;
    }

    .feature-card:nth-child(even) .feature-image,
    .feature-card:nth-child(even) .feature-content {
        order: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .menu-toggle {
        display: block;
    }

    .hero-section {
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .feature-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .platform-cards {
        flex-direction: column;
    }

    .download-grid {
        grid-template-columns: 1fr;
    }

    .reports-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .logo-tagline {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}
