:root {
    --primary-color: #111;
    --hover-color: #333;
    --text-color: #555;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 6rem 1rem;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #2c3e50, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.cta-button {
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 250px;
    margin: 0.5rem;
    border-radius: 8px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* How It Works Section */
.how-it-works .card {
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.how-it-works .card:hover {
    transform: translateY(-5px);
}

.how-it-works ol {
    padding-left: 1.5rem;
}

.how-it-works ol li {
    color: #555;
    padding-left: 0.5rem;
}

/* Benefits Section */
.benefits .icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.benefits .icon-wrapper i {
    transition: transform 0.3s ease;
}

.benefits .icon-overlay {
    position: absolute;
    font-size: 1.5rem;
    right: -10px;
    top: -10px;
    opacity: 0.8;
}

.benefits .icon-wrapper:hover i:first-child {
    transform: scale(1.1) rotate(-10deg);
}

.benefits .icon-wrapper:hover .icon-overlay {
    transform: scale(1.2) rotate(10deg);
}

.benefits div:hover i {
    transform: scale(1.1);
}

.benefits h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Trust Signals Section */
.trust-signals {
    background-color: #fff;
}

.trust-signals i {
    opacity: 0.9;
}

.trust-signals strong {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .cta-button {
        min-width: 200px;
        width: 100%;
    }

    .trust-signals strong {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-button {
        min-width: 200px;
        width: 100%;
    }
}
