/* Merchant of Record Section */
.mor-section {
    padding: 4rem 1rem;
    background: linear-gradient(180deg, var(--color-muted) 0%, var(--color-background) 50%, var(--color-muted) 100%);
    position: relative;
    overflow: hidden;
}

.mor-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(211, 100%, 50%, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mor-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, hsla(142, 71%, 45%, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mor-headline {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: var(--color-foreground);
}

.mor-lead {
    font-size: 1.125rem;
    color: var(--color-muted-foreground);
    max-width: 720px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Highlight banner */
.mor-banner {
    position: relative;
    background: linear-gradient(135deg, hsla(211, 100%, 50%, 0.06), hsla(142, 71%, 45%, 0.06));
    border: 1px solid hsla(211, 100%, 50%, 0.12);
    border-radius: calc(var(--radius) * 2);
    padding: 2.5rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.mor-banner-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-foreground);
}

.mor-banner-text {
    color: var(--color-muted-foreground);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.6;
}

/* Benefit rows — two-column icon + text list */
.mor-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
    margin-bottom: 3.5rem;
}

.mor-benefits-col {
    display: flex;
    flex-direction: column;
}

.mor-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1.15rem;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--color-border);
    transition: background-color 0.2s;
}

.mor-benefits-col .mor-benefit:last-child {
    border-bottom: none;
}

.mor-benefit:hover {
    background-color: hsla(211, 100%, 50%, 0.02);
    border-radius: var(--radius);
}

.mor-benefit:hover .mor-benefit-icon {
    transform: scale(1.12);
}

.mor-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    font-size: 1.25rem;
    transition: transform 0.2s;
}

.mor-benefit-icon.icon-blue {
    background-color: hsla(211, 100%, 50%, 0.1);
    color: var(--color-primary);
}

.mor-benefit-icon.icon-green {
    background-color: hsla(142, 71%, 45%, 0.1);
    color: var(--color-accent);
}

.mor-benefit-icon.icon-purple {
    background-color: hsla(258, 90%, 66%, 0.1);
    color: hsl(258, 90%, 66%);
}

.mor-benefit-icon.icon-amber {
    background-color: hsla(38, 92%, 50%, 0.1);
    color: hsl(38, 92%, 50%);
}

.mor-benefit-icon.icon-rose {
    background-color: hsla(347, 77%, 50%, 0.1);
    color: hsl(347, 77%, 50%);
}

.mor-benefit-icon.icon-teal {
    background-color: hsla(172, 66%, 50%, 0.1);
    color: hsl(172, 66%, 40%);
}

.mor-benefit-body {
    flex: 1;
    min-width: 0;
}

.mor-benefit-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: var(--color-foreground);
    line-height: 1.3;
}

.mor-benefit-text {
    color: var(--color-muted-foreground);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

/* Comparison columns */
.mor-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mor-col {
    border-radius: calc(var(--radius) * 1.5);
    padding: 2rem;
}

.mor-col-without {
    background-color: hsla(0, 0%, 0%, 0.02);
    border: 1px dashed hsla(0, 0%, 0%, 0.12);
}

.mor-col-with {
    background: linear-gradient(135deg, hsla(142, 71%, 45%, 0.06), hsla(211, 100%, 50%, 0.06));
    border: 1px solid hsla(142, 71%, 45%, 0.18);
}

.mor-col-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mor-col-without .mor-col-title {
    color: hsl(0, 0%, 45%);
}

.mor-col-with .mor-col-title {
    color: var(--color-accent);
}

.mor-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mor-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.mor-list li i {
    flex-shrink: 0;
    margin-top: 0.15rem;
    font-size: 1rem;
}

.mor-col-without .mor-list li {
    color: var(--color-muted-foreground);
}

.mor-col-without .mor-list li i {
    color: hsl(0, 65%, 55%);
}

.mor-col-with .mor-list li {
    color: var(--color-foreground);
}

.mor-col-with .mor-list li i {
    color: var(--color-accent);
}

/* Bottom CTA */
.mor-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.mor-cta-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-foreground);
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mor-benefits {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .mor-benefits-col .mor-benefit:last-child {
        border-bottom: 1px solid var(--color-border);
    }

    .mor-benefits-col:last-child .mor-benefit:last-child {
        border-bottom: none;
    }

    .mor-comparison {
        grid-template-columns: 1fr;
    }

    .mor-banner {
        padding: 2rem 1.25rem;
    }
}

