/* ========================================
   SHARED COMPONENTS
   ======================================== */

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(124, 179, 66, 0.1);
    border: 1px solid rgba(124, 179, 66, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    color: var(--dark-orange);
    font-weight: 600;
    font-size: 0.875rem;
    width: fit-content;
    transition: all 0.5s;
}

.badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.badge-filled {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

/* Section Title */
.section-title {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-primary);
    transition: color 0.5s;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.75rem;
    }
}

.section-title .highlight {
    color: var(--primary-orange);
}

/* Primary Button (gradient) */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(to left, var(--primary-orange), var(--dark-orange));
    color: white;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s;
    box-shadow: 0 10px 25px -5px rgba(124, 179, 66, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(124, 179, 66, 0.4);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

/* Secondary Button (outline) */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.dark .btn-secondary {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-secondary:hover {
    background: var(--black);
    color: white;
    transform: translateY(-2px);
}

.dark .btn-secondary:hover {
    background: white;
    color: black;
}

.btn-secondary svg {
    width: 20px;
    height: 20px;
}

/* Icon box (used in features, contact, etc.) */
.icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.icon-box-orange {
    background: var(--primary-orange);
    color: white;
    box-shadow: 0 8px 20px rgba(124, 179, 66, 0.2);
}

.icon-box-gradient {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: white;
    box-shadow: 0 8px 20px rgba(124, 179, 66, 0.3);
}

.icon-box svg {
    width: 24px;
    height: 24px;
}

/* Card base */
.card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 2rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.5s;
}

.dark .card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Transition helper */
.transition-all {
    transition: all 0.3s ease;
}

.transition-colors {
    transition: background-color 0.5s, color 0.5s, border-color 0.5s;
}