:root {
    --primary-color: #1563e8;
    --primary-dark: #122a63;
    --secondary-color: #051d55;
    --text-color: #333;
    --text-light: #94a6c8;
    --bg-light: #f8f9fa;
    --white: #fdfdfd;
    --border-color: #94a6c8;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --green-light: #dbe7ff;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.text-green {
    color: var(--primary-color);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.btn-outline {
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    padding: 20px 0;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.logo-img {
    height: 100px;
    width: auto;
    display: block;
}

.logo-icon {
    color: var(--primary-color);
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-light);
    font-weight: 500;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-login {
    color: var(--text-color);
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(180deg, #fdfdfd 0%, #eef3ff 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--green-light);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--secondary-color);
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 25px;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 10px;
}

.hero-features i {
    color: var(--primary-color);
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    display: flex;
    overflow: hidden;
    height: 550px;
    border: 1px solid var(--border-color);
}

.mockup-sidebar {
    width: 180px;
    background: #f4f7ff;
    border-right: 1px solid var(--border-color);
    padding: 20px;
}

.mockup-logo {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.mockup-nav .nav-item {
    padding: 10px 0;
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.mockup-nav .nav-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.mockup-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    padding: 15px 25px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-bar {
    color: #ccc;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.8rem;
}

.user-info img {
    border-radius: 50%;
}

.mockup-content {
    padding: 25px;
    overflow-y: auto;
}

.mockup-content h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.stat-card {
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.stat-value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-change {
    font-size: 0.6rem;
}

.stat-change.pos {
    color: var(--primary-color);
}

.charts-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.chart-main, .chart-side {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
}

.chart-header {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.donut-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.donut {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-color) 0% 65%, #f39c12 65% 90%, #e74c3c 90% 100%);
    margin-bottom: 15px;
    position: relative;
}

.donut::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    top: 15px;
    left: 15px;
}

.donut-legend {
    font-size: 0.65rem;
    width: 100%;
}

.donut-legend div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 5px;
}

.dot.green { background: var(--primary-color); }
.dot.orange { background: #f39c12; }
.dot.red { background: #e74c3c; }

.table-section table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.75rem;
}

.table-section th {
    text-align: left;
    color: var(--text-light);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.table-section td {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.status-tag {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
}

.status-tag.confirmed { background: var(--green-light); color: var(--primary-color); }
.status-tag.pending { background: #fff3e0; color: #f39c12; }

.view-all {
    display: block;
    margin-top: 15px;
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Trusted By */
.trusted-by {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.trusted-by p {
    font-size: 0.75rem;
    font-weight: 700;
    color: #bbb;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.logos-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.6;
}

.company-logo {
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-logo span {
    font-size: 0.6rem;
    font-weight: 400;
}

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

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

.section-badge {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 800;
}

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

.feature-card {
    padding: 30px;
    border: 1px solid #dce4f7;
    border-radius: 12px;
    transition: 0.3s;
    background: #fdfdfd;
}

.feature-card:hover {
    box-shadow: var(--shadow);
    border-color: transparent;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--green-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: #f5f8ff;
}

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

.benefits-image {
    position: relative;
}

.benefits-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text strong {
    display: block;
    font-size: 0.9rem;
}

.badge-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.benefits-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.benefits-text p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}

.benefits-list i {
    color: var(--primary-color);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    padding: 40px;
    background: var(--white);
    border: 1px solid #dce4f7;
    border-radius: 15px;
    position: relative;
}

.quote-icon {
    color: var(--primary-color);
    opacity: 0.2;
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-user strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-user span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

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

.testimonial-dots .dot.active {
    background: var(--primary-color);
    width: 20px;
    border-radius: 10px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, #dbe7ff 0%, #eef3ff 100%);
    padding: 60px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.cta-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.cta-features {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.cta-features i {
    color: var(--primary-color);
}

.cta-btn-wrapper {
    text-align: center;
}

.btn-subtext {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container, .benefits-content, .cta-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero .container {
        display: flex;
        flex-direction: column;
    }
    
    .hero-btns, .hero-features, .cta-box, .cta-content {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions {
        align-items: center;
    }
    
    .features-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav {
        display: none;
    }
}
