/* ======================= */
/*  APPCOMANDE OBRA STYLE  */
/* ======================= */

:root {
    /* AppComande Green Primary Color */
    --bs-primary: #a3ba46;
    --bs-primary-rgb: 163, 186, 70;
    --bs-primary-hover: #8fa13a;

    /* Secondary gradient colors */
    --gradient-start: #a3ba46;
    --gradient-end: #7a9134;

    /* Neutral colors */
    --dark-color: #111827;
    --text-muted: #6b7280;
    --bg-light: #f8f9fa;
    --bg-lighter: #FFF7ED;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding-top: 76px;
    line-height: 1.7;
    color: var(--dark-color);
    -webkit-font-smoothing: antialiased;
}

/* ======================= */
/*        NAVBAR           */
/* ======================= */

.navbar {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar-brand img {
    height: 35px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--bs-primary-hover);
    border-color: var(--bs-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(163, 186, 70, 0.3);
}

.btn-outline-dark {
    font-weight: 600;
    border-radius: 8px;
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

/* ======================= */
/*      HERO SECTION       */
/* ======================= */

#hero {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

#hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

#hero .lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

#hero .btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

#hero img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
    }

    #hero {
        padding: 3rem 0;
    }
}

/* ======================= */
/*        BADGES           */
/* ======================= */

.badge {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
}

.badge.bg-success {
    background-color: var(--bs-primary) !important;
}

/* ======================= */
/*       FEATURES          */
/* ======================= */

#features {
    padding: 5rem 0;
}

#features h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: #f0f7ed;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.icon-wrapper svg {
    width: 32px;
    height: 32px;
    color: var(--bs-primary);
}

.icon-wrapper i {
    font-size: 32px;
    color: var(--bs-primary);
}

#features h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
}

#features p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ======================= */
/*    FEATURE DEEP DIVE    */
/* ======================= */

.feature-section {
    padding: 5rem 0;
}

.feature-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-section p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.feature-section img {
    border-radius: 42px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.bg-light {
    background-color: var(--bg-light) !important;
}

/* ======================= */
/*    TARGET AUDIENCE      */
/* ======================= */

#target-audience {
    padding: 4rem 0;
    background-color: var(--dark-color);
}

#target-audience h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.audience-pill {
    background-color: rgba(163, 186, 70, 0.2);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
}

/* ======================= */
/*        PRICING          */
/* ======================= */

#pricing {
    padding: 4rem 0;
}

#pricing h2 {
    font-size: 2.25rem;
    font-weight: 700;
}

.pricing-card-compact {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card-compact:hover {
    border-color: var(--bs-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pricing-card-compact.featured {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border: none;
    color: #fff;
    box-shadow: 0 8px 24px rgba(163, 186, 70, 0.25);
}

.pricing-card-compact.featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(163, 186, 70, 0.35);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: var(--dark-color);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-card-compact.featured .pricing-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.pricing-card-compact.featured .plan-name {
    color: #fff;
}

.plan-price {
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark-color);
    display: block;
    line-height: 1;
}

.pricing-card-compact.featured .price-amount {
    color: #fff;
}

.price-period {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.25rem;
}

.pricing-card-compact.featured .price-period {
    color: rgba(255, 255, 255, 0.9);
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.pricing-card-compact.featured .plan-desc {
    color: rgba(255, 255, 255, 0.95);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark-color);
}

.pricing-card-compact.featured .pricing-features li {
    color: #fff;
}

.pricing-features li i {
    color: var(--bs-primary);
    font-size: 1.1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.pricing-card-compact.featured .pricing-features li i {
    color: #fbbf24;
}

.btn-pricing {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--bs-primary);
    background: #fff;
    color: var(--bs-primary);
    display: block;
}

.btn-pricing:hover {
    background: var(--bs-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(163, 186, 70, 0.3);
}

.btn-pricing.featured {
    background: #fff;
    color: var(--bs-primary);
    border-color: #fff;
}

.btn-pricing.featured:hover {
    background: #f9fafb;
    color: var(--bs-primary-hover);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .pricing-card-compact {
        margin-bottom: 1rem;
    }
    
    #pricing {
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    .plan-name {
        font-size: 1.125rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .pricing-features li {
        font-size: 0.875rem;
    }
}

/* ======================= */
/*        FOOTER           */
/* ======================= */

.footer {
    background-color: var(--dark-color);
    color: #9ca3af;
    padding: 4rem 0 2rem;
}

.footer h6 {
    color: #d1d5db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer .nav-link {
    color: #9ca3af;
    padding: 0.375rem 0;
    transition: color 0.2s ease;
}

.footer .nav-link:hover {
    color: #fff;
}

.footer-logo {
    /*filter: brightness(0) invert(1);*/
    margin-bottom: 1rem;
    width: 180px;
}

.social-icons a {
    color: #9ca3af;
    font-size: 1.5rem;
    transition: color 0.2s ease;
}

.social-icons a:hover {
    color: var(--bs-primary);
}

/* ======================= */
/*        UTILITIES        */
/* ======================= */

.text-primary {
    color: var(--bs-primary) !important;
}

.text-main-wholedata {
    color: red !important;
    font-weight: bold !important;
    text-decoration: none !important;
}

.fw-semibold {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.text-muted {
    color: var(--text-muted) !important;
}

.rounded-3 {
    border-radius: 12px !important;
}

.shadow-lg {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.gap-5 {
    gap: 3rem !important;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .feature-section h3 {
        font-size: 1.5rem;
    }

    .pricing-card {
        margin-bottom: 1.5rem;
    }
}

/* ======================= */
/*    DOWNLOAD MODAL       */
/* ======================= */

.download-modal {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.download-modal .modal-header {
    border: none;
    padding: 2rem 2rem 0;
    background: #fff;
}

.download-modal .modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    width: 100%;
    text-align: center;
}

.download-modal .btn-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
}

.download-modal .modal-body {
    padding: 1.5rem 2rem 2rem;
}

.modal-subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.download-btn:hover {
    border-color: var(--bs-primary);
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.download-btn i {
    font-size: 2.5rem;
    color: var(--dark-color);
}

.download-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-btn-text small {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1;
}

.download-btn-text strong {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.3;
}

.modal-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.modal-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.modal-divider span {
    position: relative;
    background: #fff;
    padding: 0 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.web-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    color: var(--bs-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.web-link:hover {
    background: #f0f7ed;
    color: var(--bs-primary-hover);
}

.web-link i {
    font-size: 1.25rem;
}

.download-modal .modal-footer {
    border: none;
    padding: 1rem 2rem 2rem;
    background: #fff;
    justify-content: center;
}

.modal-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.modal-badges span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.modal-badges i {
    color: var(--bs-primary);
    font-size: 1rem;
}


/* WhatsApp Action Button Styles */
.whatsapp-action-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1050;
    display: flex;
    align-items: center;
    background-color: var(--bs-primary);
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    padding: 12px 22px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
}

.whatsapp-action-btn:hover,
.whatsapp-action-btn:focus {
    background-color: #8fa13a;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 576px) {
    .download-modal .modal-header,
    .download-modal .modal-body,
    .download-modal .modal-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .download-btn {
        padding: 0.875rem 1.25rem;
    }

    .download-btn i {
        font-size: 2rem;
    }

    .modal-badges {
        gap: 1rem;
    }
}

/* Animation for fade-in effect */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}