/* Updated Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px; /* More padding */
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 2px solid transparent; /* Prepare for borders */
    cursor: pointer;
    line-height: 1.5;
}

/* Navbar Button */
.btn-urgent {
    background: #dc2626;
    color: var(--white);
    font-size: 1rem;
    padding: 10px 24px; /* Specific padding for navbar */
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
}

.btn-urgent:hover {
    background-color: #b91c1c;
    box-shadow: 0 4px 6px rgba(220, 38, 38, 0.3);
}

/* Primary Hero Button */
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
}

/* Secondary/Glass Button */
.btn-glass {
    background: var(--white);
    border-color: #e2e8f0;
    color: var(--text-heading);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.btn-glass:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #f8fafc;
}

/* Large Button Modifier */
.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
    min-width: 240px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    line-height: 1.2;
}

.btn-text small {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2px;
}

.btn-text strong {
    font-size: 1.1rem;
}

/* Icon styling */
.lucide {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.btn-large .lucide {
    width: 24px;
    height: 24px;
}

/* Feature Pills - No Emojis */
.hero-features {
    gap: 16px;
}

.feature-pill {
    padding: 10px 20px;
    gap: 10px;
    font-weight: 600;
    color: var(--text-heading);
    border: 1px solid #e2e8f0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
}

.feature-pill .lucide {
    color: var(--primary);
    width: 18px;
    height: 18px;
}