@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
}

.hero-gradient {
    background: linear-gradient(135deg, #1a365d 0%, #2563eb 100%);
}

.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.toggle-checkbox:checked {
    right: 0;
    border-color: #2563eb;
}

.toggle-checkbox:checked + .toggle-label {
    background-color: #2563eb;
}

.feature-item {
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.highlighted {
    position: relative;
    background: linear-gradient(135deg, #1a365d 0%, #2563eb 100%);
    color: white !important;
}

.highlighted::before {
    content: "POPOLARE";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff4d4d;
    color: white;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
}

/* Custom animations for GSAP */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
}

.fade-in {
    opacity: 0;
}

/* Custom dot style for checklists */
.check-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.check-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px;
    color: #2563eb;
}

.screenshot {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.screenshot:hover {
    transform: scale(1.02);
}

/* Section title hierarchy: h2 larger than h3 */
section h2 {
    font-size: 1.875rem;
}
@media (min-width: 768px) {
    section h2 {
        font-size: 2.25rem;
    }
}