* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #1976D2, #1565C0);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 45px;
    width: auto;
    filter: brightness(1.1);
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: brightness(1.3);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: #FFC107;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1976D2, #1565C0);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    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="M1200,0H0V120L1200,0Z" fill="rgba(255,255,255,0.1)"/></svg>') bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-primary {
    background: #FFC107;
    color: #1976D2;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #1976D2;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: #1976D2;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-item {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border-left: 4px solid #1976D2;
}

.service-item:hover {
    background: linear-gradient(135deg, #1976D2, #1565C0);
    color: white;
    transform: scale(1.05);
}

.service-item::before {
    content: attr(data-icon);
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* How it works */
.how-it-works {
    padding: 80px 0;
    background: #f8f9fa;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #1976D2;
    color: white;
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Premium Plans Section */
.premium-plans {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.premium-plans::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="M1200,0H0V120L1200,0Z" fill="rgba(25,118,210,0.03)"/></svg>') bottom;
    background-size: cover;
}

.premium-intro {
    background: linear-gradient(135deg, #FFD700, #FFA726);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0 3rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
}

.premium-intro-content {
    color: white;
}

.premium-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    animation: pulse 2s infinite;
}

.premium-intro h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.plan-card.featured {
    border: 3px solid #FFD700;
    transform: scale(1.02);
}

.plan-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA726);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.plan-header h3 {
    font-size: 1.8rem;
    color: #1976D2;
    margin-bottom: 0.5rem;
}

.plan-header p {
    color: #666;
    font-size: 0.9rem;
}

.plan-price {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
    border-radius: 15px;
}

.currency {
    font-size: 1.5rem;
    color: #FFD700;
    font-weight: bold;
}

.amount {
    font-size: 3rem;
    color: #FFD700;
    font-weight: bold;
}

.period {
    font-size: 1rem;
    color: #666;
    margin-left: 0.5rem;
}

.plan-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(25, 118, 210, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(25, 118, 210, 0.1);
    transform: translateX(5px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1rem;
    color: #1976D2;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.benefit-content p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.plan-button {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.user-button {
    background: linear-gradient(135deg, #1976D2, #1565C0);
    color: white;
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
}

.worker-button {
    background: linear-gradient(135deg, #FFD700, #FFA726);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.plan-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.premium-guarantee {
    margin-top: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.guarantee-content {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid #4CAF50;
}

.guarantee-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #4CAF50;
}

.guarantee-text h4 {
    color: #4CAF50;
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.guarantee-text p {
    color: #666;
    font-size: 0.8rem;
    margin: 0;
}

/* Download Section */
.download {
    padding: 80px 0;
    background: linear-gradient(135deg, #1976D2, #1565C0);
    color: white;
    text-align: center;
}

.download h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.app-badge {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.3);
}

.app-badge:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    text-decoration: none;
    color: white;
}

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(1.1);
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFC107;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-top: 10px;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #FFC107;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FFC107;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .footer-logo img {
        height: 35px;
    }
    
    .footer-logo-text {
        font-size: 1.3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-grid,
    .services-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .plan-card.featured {
        transform: none;
    }

    .plan-card.featured:hover {
        transform: translateY(-5px);
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .guarantee-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}