.reseller-hero-title {
    max-width: none;
    margin: 0;
}

.reseller-eyebrow {
    margin: 0 0 1rem;
    color: var(--webpage-main-color);
    font-size: var(--fs-400);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.reseller-lead,
.reseller-section-intro,
.reseller-contact-direct,
.reseller-mode-list li {
    font-size: var(--font-base);
    color: #555;
    line-height: 1.7;
}

.reseller-lead {
    margin: 0;
}

.reseller-highlight {
    color: var(--webpage-main-color);
    font-weight: 700;
}

.reseller-section-intro {
    max-width: 900px;
    margin: 0 auto;
}

.reseller-action-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.reseller-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: .65rem 1rem;
    border-radius: 8px;
    background: var(--webpage-main-color);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: background .3s, transform .3s;
    white-space: nowrap;
}

.reseller-button:hover,
.reseller-button:focus-visible {
    background: #000;
    transform: translateY(-2px);
}

.reseller-button-secondary {
    background: #000;
}

.reseller-card-row {
    width: 100%;
    display: grid;
    gap: 1.5rem;
}

.reseller-card-row {
    grid-template-columns: repeat(auto-fit, minmax(var(--pricing-card-w), 1fr));
}

.reseller-card {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
    text-align: center;
    width: 100%;
    min-width: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    transition: transform .3s;
}

.reseller-card:hover {
    transform: translateY(-10px);
}

.reseller-card h3 {
    font-size: var(--fs-500);
    font-weight: 700;
    margin-bottom: .75rem;
    text-transform: uppercase;
    color: var(--webpage-main-color);
    line-height: 1.25;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.reseller-card p {
    font-size: var(--font-base);
    margin: 0;
    color: #555;
    line-height: 1.7;
    text-align: center;
}

.reseller-steps-timeline,
.reseller-form-wrap {
    width: 100%;
}

.reseller-step-icon {
    float: right;
    width: 40px;
    margin-left: 20px;
}

.reseller-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.reseller-mode-list {
    margin: 1rem 0 0;
    padding-left: 1.5rem;
}

.reseller-contact-points {
    width: 100%;
    max-width: 900px;
    margin: 0;
    padding-left: 1.5rem;
    text-align: left;
    color: #555;
}

.reseller-contact-points li {
    margin-bottom: .75rem;
    line-height: 1.7;
}

.reseller-contact-direct {
    width: 100%;
    max-width: 900px;
    margin: 0;
    text-align: left;
}

.reseller-inline-link {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
}

#reseller-benefits,
#reseller-audiences,
#reseller-process {
    scroll-margin-top: calc(var(--nav-h) + 12px);
}

@media (max-width: 960px) {
    .reseller-card-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 1rem;
        scroll-padding-left: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }

    .reseller-card {
        flex: 0 0 var(--pricing-card-w);
        scroll-snap-align: start;
    }
}

@media (max-width: 960px) and (pointer: coarse) {
    .reseller-card-row {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .reseller-card-row::-webkit-scrollbar {
        display: none;
    }
}

@media (min-width: 768px) {
    .reseller-card-icon,
    .reseller-step-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 767px) {
    .reseller-action-row {
        gap: .75rem;
    }

    .reseller-button {
        min-height: 36px;
        padding: .55rem .8rem;
        font-size: var(--fs-300);
    }
}

@media (max-width: 767px) {
    .reseller-contact-points,
    .reseller-contact-direct {
        max-width: none;
    }
}
