.ocs-section,
.ocs-section * {
    box-sizing: border-box;
}

.ocs-section {
    position: relative;
    width: 100%;
    color: var(--ocs-body);
    font-family: inherit;
    isolation: isolate;
    overflow: hidden;
}

.ocs-shell {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 40px), var(--ocs-max-width));
    margin-inline: auto;
}

.ocs-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 30px;
    border: 0;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none !important;
    transition: transform .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.ocs-button:hover,
.ocs-button:focus-visible {
    transform: translateY(-2px);
}

.ocs-button-primary {
    color: var(--ocs-button-text) !important;
    background: var(--ocs-primary);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--ocs-primary) 25%, transparent);
}

.ocs-button-primary:hover,
.ocs-button-primary:focus-visible {
    color: var(--ocs-button-text) !important;
    background: var(--ocs-primary-hover);
}

.ocs-button-secondary {
    color: var(--ocs-primary) !important;
    background: var(--ocs-secondary-button);
}

.ocs-button-secondary:hover,
.ocs-button-secondary:focus-visible {
    color: var(--ocs-button-text) !important;
    background: var(--ocs-primary);
}

/* Section 1 */
.ocs-agent-banner {
    min-height: var(--ocs-banner-height);
    background: var(--ocs-light-bg);
}

.ocs-agent-banner-bg,
.ocs-why-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    pointer-events: none;
}

.ocs-agent-layout {
    min-height: var(--ocs-banner-height);
    display: grid;
    grid-template-columns: minmax(240px, 29%) minmax(0, 1fr);
    align-items: end;
    gap: clamp(28px, 5vw, 72px);
}

.ocs-agent-art {
    align-self: stretch;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: var(--ocs-banner-height);
}

.ocs-agent-art:before {
    content: "";
    position: absolute;
    width: 148px;
    height: 148px;
    right: 5%;
    bottom: 0;
    border-radius: 100% 0 0 0;
    background: var(--ocs-primary);
    opacity: .95;
}

.ocs-agent-art:after {
    content: "";
    position: absolute;
    width: 95px;
    height: 65px;
    right: 2%;
    top: 32%;
    opacity: .75;
    background-image: radial-gradient(circle, var(--ocs-heading) 2px, transparent 2.5px);
    background-size: 20px 20px;
}

.ocs-agent-art img {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 100%;
    max-height: calc(var(--ocs-banner-height) - 15px);
    width: auto;
    object-fit: contain;
    object-position: center bottom;
}

.ocs-agent-placeholder,
.ocs-photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    border: 2px dashed color-mix(in srgb, var(--ocs-primary) 45%, transparent);
    color: var(--ocs-body);
    background: rgba(255,255,255,.75);
}

.ocs-agent-placeholder {
    position: relative;
    z-index: 2;
    width: min(220px, 90%);
    height: 190px;
    margin-bottom: 18px;
    border-radius: 18px;
}

.ocs-house-icon {
    color: var(--ocs-primary);
    font-size: 54px;
    line-height: 1;
}

.ocs-agent-copy h2,
.ocs-why-copy h2 {
    margin: 0;
    color: var(--ocs-heading);
    font-weight: 800;
    letter-spacing: -.025em;
}

.ocs-agent-copy h2 {
    font-size: clamp(26px, 2.55vw, 38px);
    line-height: 1.15;
}

.ocs-agent-copy {
    padding-bottom: 0;
}

.ocs-agent-copy p {
    margin: 12px 0 0;
    color: var(--ocs-body);
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 600;
    line-height: 1.65;
}


/* Section 2 */
.ocs-why-choose {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 0;
    padding: clamp(70px, 7vw, 105px) 0 40px;
    background: var(--ocs-why-background);
}

.ocs-why-bg {
    background-position: right bottom;
    background-size: auto 55%;
}

.ocs-why-layout {
    display: block;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: 0;
}

.ocs-why-copy {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: none;
    margin: 0;
    padding-bottom: 0;
}

.ocs-script-word {
    position: absolute;
    z-index: -1;
    top: -58px;
    left: 0;
    color: color-mix(in srgb, var(--ocs-primary) 16%, transparent);
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: clamp(62px, 8vw, 112px);
    line-height: 1;
    font-style: italic;
    white-space: nowrap;
    user-select: none;
}

.ocs-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--ocs-primary);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ocs-eyebrow span {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--ocs-primary);
}

.ocs-why-copy h2 {
    max-width: 1000px;
    font-size: clamp(30px, 3.5vw, 48px);
    line-height: 1.12;
}

.ocs-description {
    margin: 18px 0 0;
    color: var(--ocs-body);
    font-size: 16px;
    line-height: 1.65;
}

.ocs-check-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 18px clamp(20px, 3vw, 48px);
    width: 100%;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.ocs-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
    margin: 0;
    color: var(--ocs-heading);
    font-size: 16px;
    line-height: 1.45;
}

.ocs-check-list li > span {
    flex: 0 0 auto;
    color: var(--ocs-primary);
    font-size: 18px;
    font-weight: 800;
}

/* Section 3 */
.ocs-icon-list {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: clamp(42px, 5vw, 72px) 0;
    background: var(--ocs-features-background);
}

.ocs-icon-list-shell {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: 0;
}

.ocs-feature-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 64px);
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
}

.ocs-feature-item {
    min-width: 0;
    text-align: center;
}

.ocs-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 92px;
    margin-bottom: 16px;
    color: var(--ocs-feature-icon);
}

.ocs-feature-icon svg {
    display: block;
    width: clamp(68px, 6vw, 92px);
    height: clamp(68px, 6vw, 92px);
}

.ocs-feature-item h3 {
    margin: 0 0 14px;
    color: var(--ocs-feature-title);
    font-size: clamp(20px, 1.8vw, 25px);
    font-weight: 500;
    line-height: 1.25;
}

.ocs-feature-text {
    max-width: 330px;
    margin-inline: auto;
    color: var(--ocs-feature-text);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 1050px) {
    .ocs-check-list,
    .ocs-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .ocs-agent-layout {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 28px;
        padding-block: 25px;
    }
}

@media (max-width: 680px) {
    .ocs-shell {
        width: min(calc(100% - 28px), var(--ocs-max-width));
    }

    .ocs-agent-layout {
        grid-template-columns: 1fr;
        align-items: center;
        justify-items: center;
        gap: 18px;
        padding: 30px 0 36px;
        text-align: center;
    }

    .ocs-agent-art {
        min-height: 180px;
        width: 260px;
        max-width: 100%;
    }

    .ocs-agent-art img {
        max-height: 205px;
    }

    .ocs-why-choose {
        padding-top: 68px;
    }

    .ocs-why-layout {
        width: 100%;
        padding-inline: 0;
    }

    .ocs-script-word {
        top: -38px;
        font-size: 68px;
    }

    .ocs-why-copy h2 {
        font-size: clamp(29px, 9vw, 39px);
    }

    .ocs-description,
    .ocs-check-list li {
        font-size: 15px;
    }

    .ocs-check-list,
    .ocs-feature-grid {
        grid-template-columns: 1fr;
    }

    .ocs-feature-grid {
        gap: 38px;
    }

    .ocs-icon-list {
        padding-block: 44px;
    }

    .ocs-feature-text {
        max-width: 430px;
    }

}

@media (prefers-reduced-motion: reduce) {
    .ocs-button {
        transition: none;
    }
}

.ocs-agent-copy .ocs-agent-subtitle {
    margin: 12px 0 0;
}

.ocs-agent-text {
    margin-top: 9px;
    color: var(--ocs-body);
    font-size: clamp(13px, 1.05vw, 15px);
    font-weight: 400;
    line-height: 1.65;
}

.ocs-agent-contacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 22px;
    margin-top: 18px;
}

.ocs-agent-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: var(--ocs-body) !important;
    font-size: clamp(13px, 1.05vw, 15px);
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none !important;
    transition: color .2s ease;
}

.ocs-agent-contact:hover,
.ocs-agent-contact:focus-visible {
    color: var(--ocs-primary) !important;
}

.ocs-agent-contact-icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    align-items: center;
    justify-content: center;
    color: var(--ocs-primary);
}

.ocs-agent-contact-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 680px) {
    .ocs-agent-contacts {
        justify-content: center;
    }
}

