
/* Hero Section */
.hero {
    background: var(--primary-gradient);
    padding: 80px 0 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 C300,60 900,60 1200,0 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.05)"/></svg>') repeat-x bottom;
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 0.8s ease;
}

.hero-image {
    width: 564px;
    height: 500px;
    animation: fadeInRight 0.8s ease;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 30px;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: var(--light-bg);
}

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

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 80px;
    height: 80px;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* App Download Section */
.app-download {
    padding: 80px 0;
    background: var(--light-bg);
}

.app-download-content {
    display: flex;
    justify-content: space-around;    
    align-items: center;
}

.app-info {
    animation: fadeInLeft 0.8s ease;
}

.app-image {
    width: 273px;
    height: 558px;
    animation: fadeInRight 0.8s ease;
}

.app-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.app-description {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.app-features {
    margin-bottom: 30px;
}

.app-features li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.app-features li::before {
    content: '●';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 20px;
}

.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-button img {
    height: 50px;
    transition: var(--transition);
}

.app-button:hover img {
    transform: scale(1.05);
}
