/* style.css */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    background-color: #FFFFFF;
    color: #0F172A;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container-custom {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 640px) {
    .container-custom {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
@media (min-width: 1024px) {
    .container-custom {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
@media (min-width: 768px) {
    .section-padding {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.gradient-text {
    background: linear-gradient(135deg, #FF6B00 0%, #FF9500 50%, #38BDF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg-hero {
    background: linear-gradient(135deg, #FFF7F0 0%, #F8FAFC 50%, #EFF9FE 100%);
}

.card-hover {
    transition: all 0.3s ease-out;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px -8px rgba(255, 107, 0, 0.18), 0 4px 16px -4px rgba(56, 189, 248, 0.12);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background-color: #FF6B00;
    color: white;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s;
}
.btn-primary:hover {
    background-color: #E55F00;
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.btn-primary:active {
    transform: scale(0.95);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border: 2px solid #38BDF8;
    color: #0EA5E9;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s;
}
.btn-secondary:hover {
    background-color: #F0F9FF;
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.btn-secondary:active {
    transform: scale(0.95);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-link {
    color: #64748B;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 0.125rem;
    background-color: #FF6B00;
    border-radius: 9999px;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #FF6B00;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link-mobile {
    color: #64748B;
    font-weight: 600;
    transition: all 0.2s;
}

.nav-link-mobile:hover,
.nav-link-mobile.active {
    color: #0F172A;
    background-color: #F8FAFC;
}

.animation-delay-100 { animation-delay: 0.1s; }
.animation-delay-200 { animation-delay: 0.2s; }
.animation-delay-300 { animation-delay: 0.3s; }
.animation-delay-400 { animation-delay: 0.4s; }
.animation-delay-500 { animation-delay: 0.5s; }
