/* ==========================================================================
   ENIGMAX FINANCE SUITE — SALES LANDING PAGE STYLES
   ========================================================================== */

:root {
    --lime: #c8ff00;
    --cyan: #00f2fe;
    --gold: #facc15;
    --dark-bg: #07090e;
    --card-bg: rgba(15, 22, 36, 0.7);
    --border-glass: rgba(255, 255, 255, 0.08);
}

/* Nav Dropdown Styling */
.nav-dropdown-item {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    color: var(--lime);
    transition: transform 0.2s ease;
}

.nav-dropdown-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #0d121d;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 1000;
    backdrop-filter: blur(16px);
}

.nav-dropdown-item:hover .dropdown-menu {
    display: flex;
    animation: dropFade 0.2s ease;
}

@keyframes dropFade {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    transition: all 0.2s ease;
}

.dropdown-link:hover, .dropdown-link.active {
    background: rgba(200, 255, 0, 0.1);
    color: var(--lime);
}

.drop-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(200, 255, 0, 0.15);
    color: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.drop-text {
    display: flex;
    flex-direction: column;
}

.drop-text strong {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.drop-text span {
    font-size: 11px;
    color: #94a3b8;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 4px 0;
    list-style: none;
}

.dropdown-link-all {
    display: block;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--cyan);
    text-decoration: none;
    text-align: center;
}

.dropdown-link-all:hover {
    color: #fff;
}

/* ==========================================================================
   CATALOG PAGE
   ========================================================================== */
.catalog-hero {
    padding: 140px 0 60px;
    text-align: center;
}

.catalog-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 255, 0, 0.1);
    border: 1px solid rgba(200, 255, 0, 0.3);
    color: var(--lime);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.catalog-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.catalog-hero p {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.6;
}

.products-grid-section {
    padding: 20px 0 100px;
}

.product-feature-card {
    background: rgba(15, 22, 36, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    margin-bottom: 40px;
    overflow: hidden;
}

.product-badge-flag {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--lime);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
}

.product-card-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

.product-img-col {
    position: relative;
}

.product-mockup-img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    transition: transform 0.3s ease;
}

.product-mockup-img:hover {
    transform: scale(1.02);
}

.product-meta-row {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.p-category, .p-type {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
}

.p-category { background: rgba(0, 242, 254, 0.15); color: var(--cyan); }
.p-type { background: rgba(200, 255, 0, 0.15); color: var(--lime); }

.product-info-col h2 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.product-desc {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-key-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #f8fafc;
}

.point-item i {
    color: var(--lime);
}

.product-pricing-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.price-prefix {
    font-size: 12px;
    color: #94a3b8;
    display: block;
}

.price-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--lime);
}

.price-value span {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

.price-yearly-note {
    font-size: 11px;
    color: #00e676;
    font-weight: 700;
    display: block;
    margin-top: 2px;
}

.product-action-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.card-coming-soon {
    text-align: center;
    padding: 50px 30px;
}

.cs-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 242, 254, 0.1);
    color: var(--cyan);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.card-coming-soon h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.card-coming-soon p {
    font-size: 14px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 24px;
}

/* ==========================================================================
   SALES LANDING PAGE
   ========================================================================== */
.sales-hero {
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
}

.sales-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 255, 0, 0.1);
    border: 1px solid rgba(200, 255, 0, 0.3);
    color: var(--lime);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.sales-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.sales-hero-sub {
    font-size: 17px;
    color: #94a3b8;
    max-width: 780px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.sales-hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-hero-demo {
    background: var(--lime);
    color: #000;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.btn-hero-demo:hover {
    background: #d8ff33;
    box-shadow: 0 0 25px rgba(200, 255, 0, 0.5);
    transform: translateY(-2px);
}

.btn-hero-order {
    background: rgba(0, 242, 254, 0.15);
    border: 1px solid rgba(0, 242, 254, 0.4);
    color: var(--cyan);
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.btn-hero-order:hover {
    background: rgba(0, 242, 254, 0.25);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

.sales-hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.text-lime { color: var(--lime); }
.text-cyan { color: var(--cyan); }
.text-gold { color: var(--gold); }

.hero-mockup-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.mockup-frame {
    background: #0f1624;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.8);
}

.mockup-header-bar {
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.url-bar {
    font-size: 12px;
    color: #64748b;
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 16px;
    border-radius: 6px;
}

.badge-live {
    background: rgba(0, 230, 118, 0.15);
    color: #00e676;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
}

.mockup-img {
    width: 100%;
    display: block;
}

/* ==========================================================================
   CUSTOM BUSINESS ADAPTATION SECTION
   ========================================================================== */
.custom-business-section {
    padding: 60px 0;
}

.custom-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    padding: 40px;
    background: rgba(15, 22, 36, 0.85);
    border: 1px solid rgba(200, 255, 0, 0.25);
    border-radius: 24px;
    box-shadow: 0 0 40px rgba(200, 255, 0, 0.08);
}

.custom-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(200, 255, 0, 0.15);
    border: 1px solid rgba(200, 255, 0, 0.4);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime);
    font-size: 28px;
}

.tag-pill-lime {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--lime);
    margin-bottom: 10px;
}

.custom-content-col h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.custom-content-col p {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 24px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.ind-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 0.2s ease;
}

.ind-card:hover {
    transform: translateY(-3px);
    border-color: rgba(200, 255, 0, 0.3);
}

.ind-card i {
    font-size: 20px;
    color: var(--lime);
    margin-bottom: 4px;
}

.ind-card strong {
    font-size: 14px;
    color: #fff;
}

.ind-card small {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}

/* ==========================================================================
   MODULES SHOWCASE
   ========================================================================== */
.modules-showcase-section {
    padding: 80px 0;
}

.module-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.module-row.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.module-row.reverse .module-text-col {
    order: 2;
}

.module-row.reverse .module-img-col {
    order: 1;
}

.module-number {
    font-size: 14px;
    font-weight: 800;
    color: var(--lime);
    background: rgba(200, 255, 0, 0.1);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.module-text-col h3 {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.module-text-col p {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 24px;
}

.module-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.module-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.5;
}

.module-feature-list li i {
    color: var(--lime);
    margin-top: 3px;
}

.module-img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    transition: transform 0.3s ease;
}

.module-img:hover {
    transform: scale(1.02);
}

/* ==========================================================================
   LIVE DEMO SECTION
   ========================================================================== */
.live-demo-cta-section {
    padding: 60px 0;
}

.demo-box {
    background: linear-gradient(135deg, rgba(13, 18, 29, 0.95), rgba(7, 9, 14, 0.95));
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 242, 254, 0.1);
}

.demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 242, 254, 0.15);
    color: var(--cyan);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 16px;
}

.demo-box h2 {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.demo-box p {
    font-size: 16px;
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto 30px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 12px;
}

.demo-subnote {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-top: 14px;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
    padding: 90px 0;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 40px auto 0;
}

.pricing-card {
    background: rgba(15, 22, 36, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.pricing-card.card-featured {
    border-color: rgba(200, 255, 0, 0.4);
    box-shadow: 0 0 35px rgba(200, 255, 0, 0.12);
    background: rgba(18, 26, 42, 0.85);
}

.badge-featured-plan {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lime);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.plan-type {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #94a3b8;
    display: block;
    margin-bottom: 12px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 12px;
}

.plan-price .currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--lime);
}

.plan-price .amount {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.plan-price .period {
    font-size: 14px;
    color: #94a3b8;
}

.plan-desc {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 24px;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #f8fafc;
}

.btn-block {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px;
}

/* ==========================================================================
   FAQ & FINAL CTA
   ========================================================================== */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.faq-card {
    padding: 28px;
    background: rgba(15, 22, 36, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
}

.faq-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-card p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

.final-cta-section {
    padding: 60px 0 100px;
}

.final-cta-box {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(180deg, rgba(20, 30, 48, 0.8), rgba(10, 14, 23, 0.95));
    border: 1px solid rgba(200, 255, 0, 0.3);
    border-radius: 28px;
    box-shadow: 0 0 50px rgba(200, 255, 0, 0.1);
}

.final-cta-box h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.final-cta-box p {
    font-size: 16px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 30px;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Section Headers in Sales Page */
.section-title-wrap, .section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: #00f2fe;
    padding: 7px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 auto 18px auto;
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.15);
    width: fit-content;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-align: center;
}

.section-sub, .section-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .product-card-grid, .module-row, .module-row.reverse {
        grid-template-columns: 1fr !important;
    }
    .custom-card {
        grid-template-columns: 1fr;
    }
    .sales-hero-title {
        font-size: 34px;
    }
}
