:root {
    --primary-yellow: #fedd00;
    --dark-accent: #000000;
    --text-main: #1a1a1a;
    --text-secondary: #4a4a4a;
    --white: #ffffff;
    --light-bg: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--text-main);
    overflow-x: hidden;
}

/* --- Navigation & Header --- */
.header-custom {
    background-color: var(--primary-yellow) !important;
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* --- Hero Section Styles --- */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f4f6f8 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -15%;
    width: 65%;
    height: 100%;
    background: rgba(0,0,0,0.02);
    transform: skew(-20deg);
    z-index: 1;
}

.hero-content h1 span.highlight {
    color: #9b8c00;
}

.btn-hero-primary {
    background: var(--primary-yellow);
    color: var(--text-main);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(254, 221, 0, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(254, 221, 0, 0.5);
    color: var(--text-main);
}

.btn-hero-secondary {
    background: #f0f2f4;
    color: var(--text-main);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: #e4e7ea;
}

/* --- Hero Visual Elements --- */
.monitor-wrapper {
    position: relative;
    z-index: 5;
    padding: 20px;
}

.monitor-img {
    filter: drop-shadow(0 40px 80px rgba(0,0,0,0.15));
    transform: perspective(1200px) rotateY(-8deg);
    transition: transform 0.5s ease;
}

.monitor-img:hover {
    transform: perspective(1200px) rotateY(0deg);
}

.mascot-img {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 35%;
    min-width: 120px;
    z-index: 10;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    animation: mascotFloat 6s ease-in-out infinite;
}

@keyframes mascotFloat {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.stats-badge {
    position: absolute;
    bottom: 10%;
    right: -5%;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    align-items: center;
    z-index: 15;
    border: 1px solid rgba(0,0,0,0.05);
    animation: badgeSlideIn 1s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards;
}

@keyframes badgeSlideIn {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.badge-icon {
    background: #e8f7f0;
    color: #2da44e;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Features Section --- */
.features-section {
    background-color: #f8f9fa;
    position: relative;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 28px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.03);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border-color: var(--primary-yellow);
}

.feature-icon-wrapper {
    width: 75px;
    height: 75px;
    background: #fffdf0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-yellow);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary-yellow);
    color: var(--white);
    transform: rotate(10deg);
}

/* --- Dark Feature Section --- */
.dark-feature-section {
    background-color: #0d0d0d;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.dark-feature-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(254, 221, 0, 0.05) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.label-badge {
    background: rgba(254, 221, 0, 0.1);
    color: var(--primary-yellow);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(254, 221, 0, 0.2);
}

.dark-feature-visual img {
    filter: drop-shadow(0 20px 60px rgba(254, 221, 0, 0.15));
    transition: transform 0.6s ease;
}

.dark-feature-visual:hover img {
    transform: scale(1.02);
}

.check-icon {
    width: 28px;
    height: 28px;
    background: #e8f7f0;
    color: #2da44e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-yellow {
    background: var(--primary-yellow);
    color: var(--dark-accent);
    border: none;
    transition: all 0.3s ease;
}

.btn-yellow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(254, 221, 0, 0.4);
    background: var(--primary-yellow);
}

/* --- Yellow Financial Section --- */
.yellow-feature-section {
    background-color: var(--primary-yellow);
    position: relative;
}

.label-badge-white {
    background: rgba(255, 255, 255, 0.5);
    color: var(--dark-accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.check-icon-white {
    width: 28px;
    height: 28px;
    background: #ffffff;
    color: #2da44e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-white {
    background: #ffffff;
    color: var(--dark-accent);
    border: none;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: #f8f9fa;
    color: var(--dark-accent);
}

.laptop-img {
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.12));
}

.laptop-img-dark {
    filter: drop-shadow(0 0 40px rgba(254, 221, 0, 0.2));
    transition: all 0.6s ease;
}

.second-dark-section::before {
    right: auto;
    left: -100px;
}

/* --- AI Feature Section --- */
.ai-feature-section {
    background-color: #f0f2f5;
}

.ai-img {
    border-radius: 20px !important;
    transition: transform 0.6s ease;
}

.ai-visual:hover .ai-img {
    transform: translateY(-5px);
}

/* --- Customizable ERP Section --- */
.dark-card {
    background-color: #0a0a0a;
    padding: 2.5rem 1.8rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: rgba(254, 221, 0, 0.2);
}

.card-icon-small {
    color: var(--primary-yellow);
    background: rgba(254, 221, 0, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-header-icon {
    filter: drop-shadow(0 10px 20px rgba(59, 130, 246, 0.3));
    animation: iconRotate 10s linear infinite;
}

@keyframes iconRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- Testimonials Section --- */
.testimonials-section {
    background-color: #f4f6f8;
}

.label-badge-pink {
    background: #fdf2f2;
    color: #e02424;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-card {
    background: #ffffff;
    padding: 3.5rem 2.5rem;
    border-radius: 32px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.01);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.author-img {
    width: 64px;
    height: 64px;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.quote {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2d3748 !important;
}

/* --- Final CTA Section --- */
.final-cta-section {
    background-color: #ffffff;
}

.cta-box {
    background-color: #000000 !important;
    box-shadow: 0 40px 100px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-mascot {
    max-height: 280px;
    transition: transform 0.5s ease;
}

.cta-box:hover .cta-mascot {
    transform: scale(1.05) rotate(2deg);
}

/* --- Footer Section --- */
.footer-section {
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    background: linear-gradient(135deg, #666 0%, var(--primary-yellow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.footer-links a {
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-yellow) !important;
    padding-left: 5px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .cta-content {
        padding-left: 0 !important;
    }
}

@media (max-width: 767.98px) {
    .display-3 {
        font-size: 3rem !important;
    }
    
    .display-4 {
        font-size: 2.2rem !important;
    }
    
    .cta-box {
        padding: 3rem 1.5rem !important;
    }
}

