:root {
    /* iLeasePro brand colors */
    --primary-orange: #FE9900;
    --dark-gray: #212121;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-primary: #212121;
    --text-secondary: #666666;
    --text-light: #676767;
    --border-color: #e1e5e9;
    --success-green: #147739;
}

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

body {
    font-family: battamReg, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
}

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

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, #fafbfc 100%);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff7ed;
    color: var(--ilp-orange-text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid #fed7aa;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: battamBold, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.hero .highlight {
    color: var(--ilp-orange-text);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary svg {
    width: 18px;
    height: 18px;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e88900;
    transform: translateY(-2px);
}

.btn-secondary:hover {
    border-color: var(--primary-orange);
    color: var(--ilp-orange-text);
}


/* Trust Section */
.trust-section {
    padding: 30px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.trust-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-stat {
    padding: 1.5rem;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ilp-orange-text);
    display: block;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: battamBold, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-orange), #ff8800);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: battamBold, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Compliance Section */
.compliance {
    padding: 100px 0;
    background: var(--white);
}

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

.compliance-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: battamBold, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.compliance-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.compliance-list {
    list-style: none;
    margin-bottom: 2rem;
}

.compliance-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.compliance-list li::before {
    content: '✓';
    color: var(--success-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.compliance-visual {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
}

.asc842-showcase {
    text-align: center;
}

.asc842-badge {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.asc842-badge h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ilp-orange-text);
    margin-bottom: 0.5rem;
    font-family: battamBold, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.asc842-badge p {
    color: var(--text-secondary);
    font-weight: 500;
}

.compliance-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    background: var(--light-gray);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-header {
    margin-bottom: 3rem;
}

.video-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: battamBold, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.video-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Customer Logos - Scrolling Gallery */
.customers {
    padding: 100px 0;
    background: var(--light-gray);
    overflow: hidden;
}

.customers-scroll-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-top: 3rem;
}

.customers-scroll-track {
    display: inline-flex;
    animation: scroll 30s linear infinite;
    align-items: center;
    gap: 2rem;
}

.customers-scroll-track:hover {
    animation-play-state: paused;
}

.customer-logo {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.customer-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.customer-logo img {
    max-width: 140px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.customer-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Scrolling animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--primary-orange);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: battamBold, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta {
    background: var(--white);
    color: var(--ilp-orange-text);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* Product Paths Section */
.product-paths {
    padding: 100px 0;
    background: var(--light-gray);
}

.product-paths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.product-path-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

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

.product-path-card--highlighted {
    border-top: 3px solid var(--primary-orange);
}

.product-path-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    max-width: 64px;
    max-height: 64px;
    background: linear-gradient(135deg, var(--primary-orange), #ff8800);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    overflow: hidden;
}

.product-path-icon svg {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px;
    max-height: 32px;
    flex-shrink: 0;
}

.product-path-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: battamBold, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.product-path-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-path-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.product-path-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.product-path-list li::before {
    content: '✓';
    color: var(--success-green);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Comparison Table Section */
.comparison-section {
    padding: 100px 0;
    background: var(--white);
}

.comparison-table-wrapper {
    overflow-x: auto;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table thead th {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    background: var(--light-gray);
}

.comparison-highlight {
    background: #fff7ed !important;
    border-top: 3px solid var(--primary-orange);
    color: var(--ilp-orange-text) !important;
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--light-gray);
}

.comparison-table .check {
    color: var(--success-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.comparison-table .dash {
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-paths-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .compliance-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .compliance-features {
        grid-template-columns: 1fr;
    }
    
    .trust-content {
        grid-template-columns: 1fr;
    }
    
    .video-container {
        margin: 0 1rem;
    }
    
    .video-header h2 {
        font-size: 2rem;
    }
    
    .customers-scroll-track {
        animation-duration: 45s;
    }
    
    .customer-logo {
        width: 160px;
        height: 100px;
        padding: 1.5rem;
    }
    
    .customer-logo img {
        max-width: 120px;
        max-height: 60px;
    }
}
