@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* { font-family: 'Inter', sans-serif; }

.gradient-bg { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hover-scale { transition: transform 0.3s ease; }
.hover-scale:hover { transform: translateY(-5px); }

.btn-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
}
.btn-gradient:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.result-box, .result-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.info-card {
    transition: all 0.3s ease;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

input[type="number"], input[type="text"], select {
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

.prose p {
    margin-bottom: 1rem;
    line-height: 1.8;
}
.prose strong {
    color: #1f2937;
    font-weight: 600;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card, .feature-card, .faq-item, .section-card {
    transition: all 0.3s ease;
}
.blog-card:hover { transform: translateY(-5px); }
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer.active { max-height: 500px; }

.faq-icon { transition: transform 0.3s ease; }
.faq-icon.active { transform: rotate(180deg); }

.section-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
