:root {
    --primary: #E00700;
    --primary-light: #FF523F;
    --primary-dark: #A50000;
    --background: #FFFFFF;
    --surface: #F8F9FA;
    --text-primary: #1A1A1A;
    --text-secondary: #6C757D;
    --divider: #E9ECEF;
    --font-family: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Header */
.header {
    background-color: var(--background);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

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

.nav a:not(.btn) {
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.3s;
}

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

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: white !important;
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(224, 7, 0, 0.2);
}

.btn-large {
    padding: 14px 32px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--surface) 0%, #ffffff 100%);
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 120px;
    box-shadow: 0 20px 40px rgba(224, 7, 0, 0.15);
}

/* Services */
.services {
    padding: 80px 0;
    background-color: var(--background);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--surface);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--divider);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-image {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background-color: var(--surface);
    padding: 60px 0 20px;
    border-top: 1px solid var(--divider);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info {
    flex: 2;
    min-width: 250px;
}

.footer-info h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}

.footer-info p {
    color: var(--text-secondary);
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #000;
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.store-btn:hover {
    background-color: #333;
}

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

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

.store-btn i {
    font-size: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--divider);
    color: var(--text-secondary);
}

/* Hero Enhancements */
.hero-subtitle {
    display: inline-block;
    background-color: rgba(224, 7, 0, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-item strong {
    font-size: 24px;
    color: var(--primary);
}
.stat-item span {
    font-size: 14px;
    color: var(--text-secondary);
}
.btn-outline {
    background-color: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background-color: rgba(224, 7, 0, 0.05);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: var(--surface);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}
.step-card {
    padding: 30px;
    background-color: var(--background);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
}
.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}
.step-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--surface);
}
.why-container {
    background-color: var(--background);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.feature-icon {
    font-size: 24px;
    color: var(--primary);
    margin-top: 3px;
}
.features-list strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .image-placeholder {
        width: 100%;
        max-width: 350px;
        height: 350px;
    }
    
    .nav {
        display: none;
    }
}
