/* ============================================================
   RESELLER PAGE STYLES
   Parent class: .reseller-page (on <body>)
   Font: Poppins only
   No :root / CSS variables
   ============================================================ */
body {
   
    background: #000 !important;
}
html { scroll-behavior: smooth; }

.reseller-page {
    color: #0B0B0B;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-size: 1rem;
    padding: auto 0;
}

.reseller-page h1,
.reseller-page h2,
.reseller-page h3,
.reseller-page h4,
.reseller-page h5 {
  
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.reseller-page h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
}
.reseller-page h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
.reseller-page h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
.reseller-page h4 { font-size: 1.15rem; font-weight: 700; }
.reseller-page a { text-decoration: none; color: inherit; }
.reseller-page img { max-width: 100%; display: block; }

/* ---- Eyebrow ---- */
.reseller-page .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFD400;
    color: #0B0B0B;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.reseller-page .eyebrow.dark   { background: #0B0B0B; color: #FFD400; }
.reseller-page .eyebrow.outline { background: transparent; border: 1.5px solid #FFD400; color: #FFD400; }

/* ---- Buttons ---- */
.reseller-page .rsl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
  
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: all .25s ease;
    text-decoration: none;
}
.reseller-page .rsl-btn-primary {
    background: #FFD400;
    color: #0B0B0B;
    box-shadow: 0 8px 22px rgba(255,212,0,.35);
}
.reseller-page .rsl-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,212,0,.5); color: #0B0B0B; }
.reseller-page .rsl-btn-dark { background: #0B0B0B; color: #FFFFFF; }
.reseller-page .rsl-btn-dark:hover { background: #1F1F1F; transform: translateY(-2px); color: #FFFFFF; }
.reseller-page .rsl-btn-ghost { background: transparent; color: #FFFFFF; border: 1.5px solid rgba(255,255,255,.3); }
.reseller-page .rsl-btn-ghost:hover { border-color: #FFD400; color: #FFD400; }
.reseller-page .rsl-btn-outline { background: transparent; color: #0B0B0B; border: 1.5px solid #0B0B0B; }
.reseller-page .rsl-btn-outline:hover { background: #0B0B0B; color: #FFD400; }
.reseller-page .rsl-btn-sm { padding: 12px 22px; }

/* ---- HERO ---- */
.reseller-page .rsl-hero {
    position: relative;
    background: #0B0B0B;
    color: #FFFFFF;
    padding: 60px 0 60px;
    overflow: hidden;
    display: block;
}
.reseller-page .rsl-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 20%, rgba(255,212,0,.18), transparent 38%),
        radial-gradient(circle at 88% 78%, rgba(255,212,0,.10), transparent 42%);
    pointer-events: none;
}
.reseller-page .rsl-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black, transparent 75%);
}
.reseller-page .rsl-hero .container { position: relative; z-index: 2; }
.reseller-page .rsl-hero h1 {
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}
.reseller-page .rsl-hero h1 .accent {
    color: #FFD400;
    position: relative;
    /* display: inline-block; */
}
.reseller-page .rsl-hero h1 .accent::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    height: 6px;
    width: 100%;
    background: rgba(255,212,0,.25);
    border-radius: 2px;
    z-index: -1;
}
.reseller-page .hero-lead { color: #C9C9C9; margin: 22px 0 32px; max-width: 580px; }
.reseller-page .hero-ctas-wrap { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.reseller-page .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 28px;
}
@media (max-width: 720px) {
    .reseller-page .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
.reseller-page .hero-stats .stat .num {
    font-size: 1.9rem;
    font-weight: 700;
    color: #FFD400;
    line-height: 1;
}
.reseller-page .hero-stats .stat .lbl {
    font-size: .78rem;
    color: #C9C9C9;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* Hero Card (lead form) */
.reseller-page .hero-card {
    background: linear-gradient(160deg, #1F1F1F, #0B0B0B);
    border: 1px solid rgba(255,212,0,.2);
    border-radius: 22px;
    padding: 30px;
    position: relative;
    box-shadow: 0 30px 80px rgba(255,212,0,.08);
}
.reseller-page .hero-card::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD400, transparent);
}
.reseller-page .hero-card .hc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #FFD400;
    margin-bottom: 14px;
}
.reseller-page .hero-card h3 { color: #FFFFFF; margin-bottom: 8px; }
.reseller-page .hero-card .hc-sub { color: #C9C9C9; margin-bottom: 22px; }
.reseller-page .hero-card .form-row-hc { margin-bottom: 14px; }
.reseller-page .hero-card label {
    display: block;
    font-size: .78rem;
    color: #C9C9C9;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 6px;
    font-weight: 600;
}
.reseller-page .hero-card input,
.reseller-page .hero-card select {
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    color: #FFFFFF;
    padding: 13px 14px;
    border-radius: 10px;
  
    transition: border-color .2s;
}
.reseller-page .hero-card input::placeholder { color: #6B6B6B; }
.reseller-page .hero-card input:focus,
.reseller-page .hero-card select:focus { outline: none; border-color: #FFD400; }
.reseller-page .hero-card select option { background: #1F1F1F; color: #FFFFFF; }
.reseller-page .hero-card .hc-micro {
    font-size: .74rem;
    color: #6B6B6B;
    text-align: center;
    margin-top: 10px;
}

/* ---- TRUST BAR ---- */
.reseller-page .rsl-trust {
    background: #F8F8F8;
    padding: 32px 0;
    border-bottom: 1px solid #E5E5E5;
}
.reseller-page .trust-inner-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.reseller-page .trust-lbl {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #6B6B6B;
}
.reseller-page .trust-badges-row {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
}
.reseller-page .badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #3A3A3A;
}
.reseller-page .badge-ic {
    width: 34px;
    height: 34px;
    background: #FFFFFF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E5E5E5;
    color: #0B0B0B;
    font-weight: 800;
}

/* ---- SECTION BASE ---- */
.reseller-page .rsl-section { padding: 50px 0; }
.reseller-page .sec-head-center {
    text-align: center;
    max-width:1060px;
    margin: 0 auto 56px;
}
.reseller-page .sec-head-center .eyebrow { margin-bottom: 18px; }
.reseller-page .sec-head-center .sec-desc { color: #3A3A3A; margin-top: 14px; }

/* ---- WHY SECTION ---- */
.reseller-page .rsl-why { background: #FFFFFF; }
.reseller-page .why-card {
    background: #FFFFFF;
    border: 1.5px solid #E5E5E5;
    border-radius: 22px;
    padding: 36px 30px;
    position: relative;
    transition: all .3s ease;
    overflow: hidden;
    height: 100%;
}
.reseller-page .why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #FFD400;
    transition: width .3s ease;
}
.reseller-page .why-card:hover { transform: translateY(-6px); border-color: #0B0B0B; box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.reseller-page .why-card:hover::before { width: 100%; }
.reseller-page .why-card .wc-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #FFD400;
    color: #0B0B0B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 22px;
}
.reseller-page .why-card h3 { margin-bottom: 10px; }
.reseller-page .why-card .wc-num {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 3.4rem;
    font-weight: 700;
    color: #F2F2F2;
    line-height: 1;
    pointer-events: none;
}

/* ---- SERVICES SECTION ---- */
.reseller-page .rsl-what { background: #F8F8F8; }
.reseller-page .svc-card {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 26px 22px;
    border: 1px solid #E5E5E5;
    transition: all .3s ease;
    position: relative;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.reseller-page .svc-card:hover { border-color: #0B0B0B; background: #0B0B0B; color: #FFFFFF; transform: translateY(-4px); }
.reseller-page .svc-card:hover h4,
.reseller-page .svc-card:hover .svc-desc { color: #FFFFFF; }
.reseller-page .svc-card:hover .svc-arrow,
.reseller-page .svc-card:hover .svc-cta { color: #FFD400; }
.reseller-page .svc-card:hover .svc-arrow { transform: translateX(4px); }
.reseller-page .svc-card .svc-ic {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #F2F2F2;
    color: #0B0B0B;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-weight: 800;
    font-size: 1.05rem;
    transition: all .3s ease;
}
.reseller-page .svc-card:hover .svc-ic { background: #FFD400; color: #0B0B0B; }
.reseller-page .svc-card h4 { font-size: 1.05rem; margin-bottom: 6px; transition: color .3s; }
.reseller-page .svc-desc { color: #6B6B6B; margin-bottom: 14px; line-height: 1.5; transition: color .3s; }
.reseller-page .svc-arrow { font-size: .85rem; font-weight: 700; color: #3A3A3A; transition: all .3s; display: inline-flex; align-items: center; gap: 4px; }
.reseller-page .svc-cta { font-size: .82rem; font-weight: 700; color: #3A3A3A; transition: color .3s; margin-top: auto; display: block; }

/* ---- HOW IT WORKS ---- */
.reseller-page .rsl-how {
    background: #0B0B0B;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}
.reseller-page .rsl-how::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(255,212,0,.08), transparent 50%);
    pointer-events: none;
}
.reseller-page .rsl-how .container { position: relative; z-index: 2; }
.reseller-page .rsl-how .sec-head-center h2 { color: #FFFFFF; }
.reseller-page .rsl-how .sec-head-center .sec-desc { color: #C9C9C9; }
.reseller-page .step-card {
    background: linear-gradient(160deg, #1F1F1F, #0f0f0f);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    padding: 30px 26px;
    position: relative;
    transition: all .3s ease;
    height: 100%;
}
.reseller-page .step-card:hover { border-color: #FFD400; transform: translateY(-4px); }
.reseller-page .step-num-lbl {
    font-size: .78rem;
    letter-spacing: .16em;
    font-weight: 700;
    color: #FFD400;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.reseller-page .step-icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #FFD400;
    color: #0B0B0B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 18px;
}
.reseller-page .step-card h4 { color: #FFFFFF; margin-bottom: 8px; }
.reseller-page .step-card .step-desc { color: #C9C9C9; }

/* ---- SUCCESS SECTION ---- */
.reseller-page .rsl-success { background: #F8F8F8; }
.reseller-page .metric-block {
    background: #0B0B0B;
    color: #FFFFFF;
    border-radius: 22px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.reseller-page .metric-block::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,212,0,.18), transparent 60%);
    border-radius: 50%;
}
.reseller-page .metric-block h3 { color: #FFFFFF; margin-bottom: 6px; position: relative; }
.reseller-page .metric-block .mb-sub { color: #C9C9C9; margin-bottom: 30px; }
.reseller-page .metrics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.reseller-page .metric-item {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 22px;
}
.reseller-page .metric-item .big { font-size: 2.1rem; font-weight: 700; color: #FFD400; line-height: 1; }
.reseller-page .metric-item .metric-lbl { font-size: .82rem; color: #C9C9C9; margin-top: 8px; }

.reseller-page .case-card {
    background: #FFFFFF;
    border: 1.5px solid #E5E5E5;
    border-radius: 22px;
    padding: 30px;
    margin-bottom: 18px;
    transition: all .3s ease;
}
.reseller-page .case-card:last-child { margin-bottom: 0; }
.reseller-page .case-card:hover { border-color: #0B0B0B; box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.reseller-page .case-card .cc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.reseller-page .cc-loc { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #6B6B6B; }
.reseller-page .cc-yr { background: #FFD400; color: #0B0B0B; font-size: .72rem; font-weight: 800; padding: 4px 10px; border-radius: 999px; }
.reseller-page .case-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
.reseller-page .cc-stats { display: flex; gap: 24px; flex-wrap: wrap; border-top: 1px solid #E5E5E5; padding-top: 14px; }
.reseller-page .cc-stats-item { font-size: .85rem; }
.reseller-page .cc-stats-item strong { color: #0B0B0B; font-weight: 700; font-size: 1.05rem; display: block; }

/* ---- TESTIMONIALS ---- */
.reseller-page .rsl-test { background: #FFFFFF; }
.reseller-page .tcard {
    background: #F8F8F8;
    border: 1px solid #E5E5E5;
    border-radius: 22px;
    padding: 30px;
    position: relative;
    transition: all .3s;
    height: 100%;
}
.reseller-page .tcard:hover { background: #0B0B0B; color: #FFFFFF; transform: translateY(-4px); }
.reseller-page .tcard:hover .tcard-body { color: #FFFFFF; }
.reseller-page .tcard:hover .tc-name { color: #FFFFFF; }
.reseller-page .tcard:hover .tc-role { color: #C9C9C9; }
.reseller-page .tcard .tcard-quote {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 3.5rem;
    color: #FFD400;
    line-height: 1;
    font-weight: 700;
}
.reseller-page .tcard .tc-stars { color: #FFD400; margin-bottom: 14px; }
.reseller-page .tcard .tcard-body { color: #3A3A3A; margin-bottom: 22px; line-height: 1.65; transition: color .3s; }
.reseller-page .tcard .tc-person { display: flex; align-items: center; gap: 12px; }
.reseller-page .tcard .tc-avatar { width: 42px; height: 42px; border-radius: 50%; background: #FFD400; color: #0B0B0B; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.reseller-page .tcard .tc-name { font-weight: 700; transition: color .3s; }
.reseller-page .tcard .tc-role { font-size: .8rem; color: #6B6B6B; transition: color .3s; }

/* ---- COMPARE TABLE ---- */
.reseller-page .rsl-compare { background: #FFFFFF; }
.reseller-page .compare-table {
    background: #FFFFFF;
    border: 1.5px solid #E5E5E5;
    border-radius: 22px;
    overflow: hidden;
    margin-top: 20px;
}
.reseller-page .compare-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    border-bottom: 1px solid #E5E5E5;
}
.reseller-page .compare-row:last-child { border-bottom: none; }
.reseller-page .compare-row.hdr { background: #0B0B0B; color: #FFFFFF; }
.reseller-page .compare-row.hdr .cell.pri { background: #FFD400; color: #0B0B0B; }
.reseller-page .cell { padding: 20px 24px; display: flex; align-items: center; font-weight: 600; }
.reseller-page .cell.pri { font-weight: 800; }
.reseller-page .cell.center { justify-content: center; }
.reseller-page .cell .yes { color: #0a7a3b; font-weight: 800; }
.reseller-page .cell .no  { color: #9b1c1c; font-weight: 800; }
.reseller-page .compare-row:not(.hdr) .cell:first-child { color: #3A3A3A; }
@media (max-width: 700px) {
    .reseller-page .compare-row { grid-template-columns: 1.2fr .8fr .8fr; }
    .reseller-page .cell { padding: 14px 12px; font-size: .85rem; }
}

/* ---- FAQ ---- */
.reseller-page .rsl-faq { background: #F8F8F8; }
.reseller-page .faq-side { position: sticky; top: 100px; }
.reseller-page .faq-side .eyebrow { margin-bottom: 18px; }
.reseller-page .faq-side h2 { margin-bottom: 14px; }
.reseller-page .faq-side .faq-side-desc { margin-bottom: 22px; }
.reseller-page .faq-list { display: flex; flex-direction: column; gap: 12px; }
.reseller-page .faq-item {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 14px;
    overflow: hidden;
    transition: all .3s;
}
.reseller-page .faq-item:hover { border-color: #3A3A3A; }
.reseller-page .faq-item.open { border-color: #0B0B0B; box-shadow: 0 4px 12px rgba(0,0,0,.06); }
.reseller-page .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    color: #0B0B0B;
}
.reseller-page .faq-item summary::-webkit-details-marker { display: none; }
.reseller-page .faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #F2F2F2;
    color: #0B0B0B;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s;
}
.reseller-page .faq-item[open] .faq-toggle { background: #FFD400; transform: rotate(45deg); }
.reseller-page .faq-item .faq-ans { padding: 0 26px 24px; color: #3A3A3A; line-height: 1.7; }

/* ---- FINAL CTA ---- */
.reseller-page .rsl-final-cta {
    background: #0B0B0B;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}
.reseller-page .rsl-final-cta::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: #FFD400;
    border-radius: 50%;
    filter: blur(140px);
    opacity: .18;
}
.reseller-page .rsl-final-cta::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: #FFD400;
    border-radius: 50%;
    filter: blur(140px);
    opacity: .12;
}
.reseller-page .rsl-final-cta .container { position: relative; z-index: 2; text-align: center; }
.reseller-page .rsl-final-cta h2 { color: #FFFFFF; margin: 18px auto 18px; max-width: 780px; }
.reseller-page .rsl-final-cta h2 span { color: #FFD400; }
.reseller-page .rsl-final-cta .cta-para { color: #C9C9C9; max-width: 600px; margin: 0 auto 32px; }
.reseller-page .rsl-final-cta .ctas-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.reseller-page .rsl-final-cta .cta-micro { margin-top: 24px; color: #6B6B6B; }

/* ---- FA icon size helper ---- */
.reseller-page .fa-icon-lg { font-size: 1.3rem; }

/* ---- Pulse animation (top strip) ---- */
@keyframes rsl-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.reseller-page .pulse-dot {
    width: 8px;
    height: 8px;
    background: #FFD400;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    animation: rsl-pulse 1.6s infinite;
}

/* ---- Feat list (used in success section) ---- */
.reseller-page .feat-list { list-style: none; padding: 0; margin: 0 0 28px; }
.reseller-page .feat-list li {
    padding: 7px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #3A3A3A;
}
.reseller-page .feat-list li .fi {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: #FFD400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
    font-size: .55rem;
    color: #0B0B0B;
}

/* ---- Responsive helpers ---- */
@media (max-width: 992px) {
    .reseller-page .faq-side { position: static; }
}
