/* ===================================================
   RESELLER CENTRAL INTERFACE CANVAS STYLING
=================================================== */
.reseller-page-wrapper {
    background-color: #f8fafc;
    padding-top: 85px; /* CLEARANCE ADJUSTMENT: Essential space for navbar anchor */
    font-family: 'Inter', sans-serif !important;
}

/* 1. Marquee Utility Header strip line */
.reseller-marquee-line {
    background-color: #0f172a;
    color: #f8fafc;
    padding: 10px 0;
    font-size: 13.5px;
    font-weight: 500;
    border-bottom: 2px solid #fbbf24;
}

.marquee-span-item {
    margin: 0 45px;
    display: inline-block;
}

/* 2. Brand New Pristine White-Canvas Hero Block */
.reseller-hero-block {
    padding: 70px 24px 60px 24px;
    background: radial-gradient(circle at 85% 15%, #f0f9ff 0%, #ffffff 65%);
    text-align: center;
}

.bg-soft-gold-pill {
    background-color: #fef3c7;
    color: #d97706;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    letter-spacing: 1px;
}

.reseller-headline {
    font-family: 'Outfit', sans-serif !important;
    font-size: 50px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-top: 10px;
}

.reseller-headline span {
    color: #e11d48; /* Red branding focus token alignment */
}

.reseller-sub-desc {
    font-size: 16.5px;
    line-height: 1.6;
    color: #64748b;
    max-width: 720px;
    margin-top: 15px;
}

/* Core Requested Crimson red interactive buttons */
.reseller-cta-crimson {
    background-color: #e11d48;
    color: #ffffff !important;
    padding: 14px 35px;
    font-weight: 600;
    font-size: 15.5px;
    border-radius: 12px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.2);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.reseller-cta-crimson:hover {
    background-color: #be123c;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(225, 29, 72, 0.3);
}

/* ===================================================
   BENEFITS CARDS AND HOVER MATRIX DESIGNS
=================================================== */
.reseller-section-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
}

.roadmap-tile-card {
    background-color: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.roadmap-tile-card:hover {
    border-color: #0ea5e9;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
    transform: translateY(-6px);
}

.roadmap-tile-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px auto;
}

.icon-blue-soft { background-color: #e0f2fe; color: #0284c7; }
.icon-orange-soft { background-color: #ffedd5; color: #ea580c; }
.icon-green-soft { background-color: #dcfce7; color: #16a34a; }
.icon-purple-soft { background-color: #f3e8ff; color: #9333ea; }

.roadmap-tile-card h5 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.roadmap-tile-card p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* ===================================================
   CRM BLOCK SETUP AND GEOMETRIC MOCK DESIGN
=================================================== */
.bg-light-gradient {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.bg-primary-soft { background-color: #e0f2fe; color: #0284c7; font-weight: 600; }

.crm-sleek-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.crm-list-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 500;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s ease;
}

.crm-list-item i {
    color: #10b981;
    font-size: 16px;
}

.crm-list-item:hover {
    padding-left: 24px;
    border-color: #0ea5e9;
    color: #0f172a;
}

/* Futuristic graphic canvas on right block side */
.crm-mock-visual-box {
    background-color: #0f172a;
    border-radius: 24px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
}

.bg-dark-pill { background-color: rgba(255,255,255,0.06); color: #94a3b8; font-size: 11px; letter-spacing: 0.5px; position: absolute; top: 20px; right: 20px;}

.mock-inner-graphic-node {
    width: 90px;
    height: 90px;
    background-color: #0ea5e9;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    position: relative;
    z-index: 5;
}

.pulse-ring-effect {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 50%;
    animation: crmPulse 2s infinite linear;
}

@keyframes crmPulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ===================================================
   HARDWARE CARDS & BUNDLES
=================================================== */
.bg-danger-soft { background-color: #fef2f2; font-weight: 600; font-size: 11px; }

.hardware-bundle-tile {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.25s ease;
}

.hw-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: #fef3c7;
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hw-item-name {
    font-size: 14.5px;
    font-weight: 600;
    color: #1e293b;
}

.hardware-bundle-tile:hover {
    border-color: #fbbf24;
    background-color: #fffdf5;
}

/* ===================================================
   PORTFOLIO STACK TABS & PRICING
=================================================== */
.custom-portfolio-tabs {
    background-color: #f1f5f9;
    padding: 6px;
    border-radius: 30px;
    display: inline-flex;
}

.custom-portfolio-tabs .nav-link {
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    border-radius: 25px;
    padding: 10px 24px;
    border: none;
    background: transparent;
    transition: all 0.2s ease;
}

.custom-portfolio-tabs .nav-link.active {
    background-color: #0ea5e9 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

.portfolio-item-pill {
    background-color: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    box-shadow: 0 2px 6px rgba(0,0,0,0.01);
}

/* Pricing boxes redesign setup */
.tier-pricing-box {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    position: relative;
}

.tier-name {
    font-family: 'Outfit', sans-serif !important;
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
}

.tier-price-row {
    font-family: 'Outfit', sans-serif !important;
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin: 10px 0 2px 0;
}

.tier-price-row span {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.tier-features-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tier-features-list li {
    font-size: 13.5px;
    font-weight: 500;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tier-box-featured {
    border: 2px solid #0ea5e9;
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.05);
}

.bg-featured-ribbon {
    background-color: #0ea5e9;
    color: #ffffff;
    font-size: 10px;
    letter-spacing: 0.5px;
    position: absolute;
    top: 15px;
    right: 25px;
}

/* ===================================================
   CLOSING BOTTOM CALL TO ACTION PANEL
=================================================== */
.closing-action-panel {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.step-container-row {
    border-top: 1px dashed rgba(255,255,255,0.1);
    padding-top: 35px;
}

.step-block {
    text-align: center;
}

.step-num {
    font-family: 'Outfit', sans-serif !important;
    font-size: 26px;
    font-weight: 800;
    color: #fbbf24;
    display: block;
    margin-bottom: 5px;
}

.step-block h6 {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

.bg-gold-btn {
    background-color: #fbbf24;
    color: #0f172a !important;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.2);
}

.bg-gold-btn:hover {
    background-color: #f59e0b;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn-call-interview {
    border: 1px solid rgba(255,255,255,0.15);
    color: #ffffff;
    padding: 14px 35px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    background-color: rgba(255,255,255,0.02);
    transition: all 0.2s ease;
}

.btn-call-interview:hover {
    background-color: rgba(255,255,255,0.06);
    color: #ffffff;
}

/* Responsive Adaptive Viewports Override */
@media (max-width: 992px) {
    .reseller-page-wrapper { padding-top: 110px; }
    .reseller-headline { font-size: 32px; }
    .step-container-row { display: none; } /* Drops procedural indicators on compressed views */
    .closing-action-panel { padding: 30px 20px; }
    .custom-portfolio-tabs { flex-direction: column; border-radius: 14px; width: 100%; }
}