.reputation-section {
    position: relative;
    padding: 118px 0 132px;
    color: var(--h-dark);
    background: #EEF1F6;
    overflow: hidden;
}

.reputation-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image: linear-gradient(rgba(93, 138, 254, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(93, 138, 254, 0.06) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(90deg, black, transparent 88%);
    pointer-events: none;
}

.reputation-header {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto 56px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 60px;
}

.reputation-kicker {
    margin: 0 0 18px;
    color: #8eaeff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.reputation-header h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.96;
    letter-spacing: -2px;
}

.reputation-header h2 span { color: #8eaeff; }

.reputation-intro {
    max-width: 390px;
    margin: 0;
    color: var(--h-muted);
    font-size: 15px;
    line-height: 1.75;
}

.reputation-marquee {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.reputation-track {
    display: flex;
    width: max-content;
    animation: reputation-scroll 34s linear infinite;
}

.reputation-set {
    display: flex;
    flex: 0 0 auto;
    gap: 22px;
    padding-right: 22px;
}

.reputation-photo {
    width: 330px;
    flex: 0 0 330px;
    margin: 0;
}

.reputation-photo img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 1px solid rgba(23, 32, 42, 0.12);
    border-radius: 6px;
    filter: saturate(0.9);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.reputation-photo:hover img {
    transform: translateY(-7px);
    filter: saturate(1.08);
}

.reputation-photo figcaption {
    display: grid;
    grid-template-columns: 30px 1fr;
    column-gap: 10px;
    padding-top: 17px;
}

.reputation-photo figcaption span {
    grid-row: span 2;
    color: #8eaeff;
    font-size: 11px;
    font-weight: 700;
}

.reputation-photo figcaption strong { font-size: 14px; }
.reputation-photo figcaption small { margin-top: 4px; color: var(--h-muted); font-size: 12px; }

@keyframes reputation-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-1 * var(--reputation-shift, 0px))); }
}

.confirmation-section {
    position: relative;
    padding: 118px 0 132px;
    color: var(--h-dark);
    background: #fff;
    overflow: hidden;
}

.confirmation-header {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto 56px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 60px;
}

.confirmation-kicker {
    margin: 0 0 18px;
    color: #5d8afe;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.confirmation-header h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.96;
    letter-spacing: -2px;
}

.confirmation-header h2 span { color: #5d8afe; }

.confirmation-intro {
    max-width: 390px;
    margin: 0;
    color: var(--h-muted);
    font-size: 15px;
    line-height: 1.75;
}

.confirmation-marquee {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.confirmation-track {
    display: flex;
    width: max-content;
    animation: confirmation-scroll 34s linear infinite;
}

.confirmation-set {
    display: flex;
    flex: 0 0 auto;
    gap: 22px;
    padding-right: 22px;
}

.confirmation-photo {
    width: 420px;
    flex: 0 0 420px;
    margin: 0;
}

.confirmation-photo img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
    border: 1px solid rgba(23, 32, 42, 0.12);
    border-radius: 6px;
    filter: saturate(0.92);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.confirmation-photo-y26 img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.confirmation-photo:hover img {
    transform: translateY(-7px);
    filter: saturate(1.08);
}

.confirmation-photo figcaption {
    display: grid;
    grid-template-columns: 30px 1fr;
    column-gap: 10px;
    padding-top: 17px;
}

.confirmation-photo figcaption span {
    grid-row: span 2;
    color: #5d8afe;
    font-size: 11px;
    font-weight: 700;
}

.confirmation-photo figcaption strong { font-size: 14px; }
.confirmation-photo figcaption small { margin-top: 4px; color: var(--h-muted); font-size: 12px; }

@keyframes confirmation-scroll {
    from { transform: translateX(calc(-1 * var(--confirmation-shift, 0px))); }
    to { transform: translateX(0); }
}

@media (max-width: 900px) {
    .reputation-header, .confirmation-header { display: block; }
    .reputation-intro, .confirmation-intro { margin-top: 24px; }
}

@media (max-width: 600px) {
    .reputation-section { padding: 82px 0 94px; }
    .reputation-header { width: min(100% - 32px, 1180px); margin-bottom: 40px; }
    .reputation-header h2 { font-size: clamp(42px, 13vw, 62px); }
    .reputation-photo { width: 260px; flex-basis: 260px; }
    .reputation-photo img { height: 205px; }
    .confirmation-section { padding: 82px 0 94px; }
    .confirmation-header { width: min(100% - 32px, 1180px); margin-bottom: 40px; }
    .confirmation-header h2 { font-size: clamp(42px, 13vw, 62px); }
    .confirmation-photo { width: 300px; flex-basis: 300px; }
    .confirmation-photo img { height: 220px; }
}

@media (prefers-reduced-motion: reduce) {
    .reputation-track, .confirmation-track { animation-play-state: paused; }
}