@charset "UTF-8";

/* ==========================================================================
   LEASING MANAGEMENT SUPPORT SYSTEM
   ========================================================================== */
.p-landlord-support {
    width: 100%;
    background-color: #ffffff;
    color: #1a1a1a;
    padding-bottom: 120px;
}

.p-landlord-support__hero {
    background-color: var(--color-hero-navy);
    background-image: linear-gradient(180deg, var(--color-hero-navy) 0%, #08152c 100%);
    padding: 100px 0;
    color: #ffffff;
    margin-bottom: 70px;
}

.p-landlord-support__hero-inner {
    width: min(100%, 1440px);
    margin-inline: auto;
    padding-inline: 40px;
}

.p-landlord-support__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-hero-gold);
    border: 1px solid var(--color-hero-gold);
    padding: 4px 12px;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.p-landlord-support__main-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.p-landlord-support__sub-title {
    font-size: 16px;
    color: #a4b3c6;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   LANDLORD SERVICES BLOCK
   ========================================================================== */
.p-landlord-services {
    padding: 80px 0 0;
    background-color: #ffffff;
}

.p-landlord-services__inner {
    width: min(100%, 1440px);
    margin-inline: auto;
    padding-inline: 40px;
}

.p-landlord-services__header {
    margin-bottom: 24px;
}

.p-landlord-services__header-sub {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-hero-gold);
    letter-spacing: 0.2em;
    margin-bottom: 4px;
}

.p-landlord-services__header-main {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-hero-navy);
    margin: 0;
    letter-spacing: 0.04em;
}

.p-landlord-services__lead {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin: 0 0 64px;
    letter-spacing: 0.02em;
}

.p-landlord-services__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 80px;
}

.p-landlord-services__row {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    position: relative;
    padding: 48px 0;
    border-bottom: 1px solid #e5e5e5;
}

.p-landlord-services__row:first-child {
    border-top: 1px solid #e5e5e5;
}

.p-landlord-services__row::before {
    content: "";
    position: absolute;
    top: 48px;
    bottom: 48px;
    left: 0;
    width: 3px;
    background-color: var(--color-hero-gold);
    z-index: 4;
}

.p-landlord-services__meta {
    flex: 1;
    width: 50%;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
    z-index: 3;
    padding: 75px 48px 75px 32px;
    background-image:
        linear-gradient(135deg, rgba(253, 251, 247, 0.95) 0%, rgba(246, 243, 235, 0.95) 35%, rgba(241, 234, 224, 0.93) 70%, rgba(235, 226, 213, 0.95) 100%),
        repeating-linear-gradient(45deg, rgba(212, 199, 176, 0.03) 0px, rgba(212, 199, 176, 0.03) 2px, transparent 2px, transparent 10px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 0px, rgba(255, 255, 255, 0.4) 4px, transparent 4px, transparent 12px);
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.8), 0 4px 15px rgba(14, 34, 69, 0.02);
    border-radius: 0 4px 4px 0;
}

.p-landlord-services__number {
    font-size: 120px;
    font-weight: 100;
    color: var(--color-hero-gold);
    line-height: 0.75;
    letter-spacing: -0.04em;
    font-family: "Cormorant Garamond", "Didot", "Bodoni MT", Georgia, serif;
    opacity: 0.9;
}

.p-landlord-services__body {
    flex: 1;
}

.p-landlord-services__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-hero-navy);
    margin: 0 0 16px;
    letter-spacing: 0.04em;
    line-height: 1.5;
}

.p-landlord-services__text {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin: 0;
    letter-spacing: 0.02em;
    font-weight: 500;
}

.p-landlord-services__link {
    display: none;
}

.p-landlord-services__figure {
    flex: 1;
    width: 50%;
    height: 300px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.p-landlord-services__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-landlord-services__row .p-landlord-services__figure::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.p-landlord-services__row--reverse {
    flex-direction: row-reverse;
}

.p-landlord-services__row--reverse::before {
    left: auto;
    right: 0;
}

.p-landlord-services__row--reverse .p-landlord-services__meta {
    padding-right: 32px;
    padding-left: 48px;
    border-radius: 4px 0 0 4px;
}

.p-landlord-services__row--reverse .p-landlord-services__figure::before {
    left: auto;
    right: 0;
    background: linear-gradient(-90deg, #ffffff 0%, transparent 100%);
}

.p-landlord-services__row:hover .p-landlord-services__figure img {
    transform: scale(1.03);
}

/* ==========================================================================
   LANDLORD FLOW BLOCK
   ========================================================================== */
.p-landlord-flow {
    padding: 100px 0 110px;
    background-color: #0b1528;
    color: #ffffff;
}

.p-landlord-flow__inner {
    width: min(100%, 1440px);
    margin-inline: auto;
    padding-inline: 40px;
}

.p-landlord-flow__header {
    margin-bottom: 20px;
}

.p-landlord-flow__header-sub {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-hero-gold);
    letter-spacing: 0.2em;
    margin-bottom: 4px;
}

.p-landlord-flow__header-main {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.06em;
}

.p-landlord-flow__lead {
    font-size: 16px;
    line-height: 1.7;
    color: #8fa0b5;
    margin: 0 0 64px;
}

.p-landlord-flow__timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    gap: 32px;
    position: relative;
}

.p-landlord-flow__timeline::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(184, 158, 116, 0.2);
    z-index: 1;
}

.p-landlord-flow__step {
    flex: 1;
    position: relative;
    z-index: 2;
}

.p-landlord-flow__step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.p-landlord-flow__step-icon {
    width: 40px;
    height: 40px;
    background-color: #0b1528;
    border: 2px solid var(--color-hero-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px #0b1528;
    transition: all 0.3s ease;
}

.p-action-sub-icon.material-symbols-outlined {
    font-size: 18px;
    color: var(--color-hero-gold);
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    transition: transform 0.3s ease;
}

.p-landlord-flow__step:hover .p-landlord-flow__step-icon {
    background-color: var(--color-hero-gold);
    border-color: var(--color-hero-gold);
}

.p-landlord-flow__step:hover .p-action-sub-icon.material-symbols-outlined {
    color: #0b1528;
    transform: scale(1.1);
}

.p-landlord-flow__step-num {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-hero-gold);
    font-family: "Times New Roman", Georgia, serif;
    letter-spacing: 0.05em;
    padding-top: 4px;
}

.p-landlord-flow__step-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
    letter-spacing: 0.04em;
    line-height: 1.5;
}

.p-landlord-flow__step-text {
    font-size: 14px;
    line-height: 1.7;
    color: #8fa0b5;
    margin: 0;
}

/* ==========================================================================
   RESPONSIVE CONTROL
   ========================================================================== */
@media screen and (max-width: 1024px) {
    .p-landlord-support__hero {
        padding: 80px 0;
    }

    .p-landlord-support__hero-inner,
    .p-landlord-services__inner,
    .p-landlord-flow__inner {
        padding-inline: 32px;
    }

    .p-landlord-support__main-title {
        font-size: 36px;
    }

    .p-landlord-services {
        padding-top: 72px;
    }

    .p-landlord-services__row,
    .p-landlord-services__row--reverse {
        flex-direction: column;
        align-items: stretch;
        padding: 36px 0;
    }

    .p-landlord-services__row::before,
    .p-landlord-services__row--reverse::before {
        top: 36px;
        bottom: auto;
        left: 0;
        right: auto;
        width: 100%;
        height: 3px;
    }

    .p-landlord-services__meta,
    .p-landlord-services__row--reverse .p-landlord-services__meta {
        width: 100%;
        padding: 36px 32px;
        border-radius: 4px;
    }

    .p-landlord-services__figure {
        width: 100%;
        height: 300px;
        margin-top: 20px;
    }

    .p-landlord-services__row .p-landlord-services__figure::before,
    .p-landlord-services__row--reverse .p-landlord-services__figure::before {
        top: 0;
        left: 0;
        right: auto;
        width: 100%;
        height: 32%;
        background: linear-gradient(180deg, #ffffff 0%, transparent 100%);
    }

    .p-landlord-services__number {
        font-size: 90px;
    }

    .p-landlord-flow {
        padding: 80px 0 90px;
    }

    .p-landlord-flow__timeline {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 44px 28px;
    }

    .p-landlord-flow__timeline::before {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .p-landlord-support__hero {
        padding: 56px 0;
    }

    .p-landlord-support__hero-inner,
    .p-landlord-services__inner,
    .p-landlord-flow__inner {
        padding-inline: 20px;
    }

    .p-landlord-support__badge {
        font-size: 10px;
        margin-bottom: 16px;
    }

    .p-landlord-support__main-title {
        font-size: 28px;
        line-height: 1.35;
    }

    .p-landlord-support__sub-title {
        font-size: 13px;
        line-height: 1.8;
    }

    .p-landlord-services {
        padding: 48px 0 0;
    }

    .p-landlord-services__header {
        margin-bottom: 18px;
    }

    .p-landlord-services__header-main {
        font-size: 26px;
        line-height: 1.4;
    }

    .p-landlord-services__lead {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .p-landlord-services__list {
        margin-bottom: 56px;
    }

    .p-landlord-services__row,
    .p-landlord-services__row--reverse {
        padding: 28px 0;
    }

    .p-landlord-services__row::before,
    .p-landlord-services__row--reverse::before {
        top: 28px;
    }

    .p-landlord-services__meta,
    .p-landlord-services__row--reverse .p-landlord-services__meta {
        flex-direction: column;
        gap: 16px;
        padding: 28px 20px;
    }

    .p-landlord-services__number {
        font-size: 64px;
    }

    .p-landlord-services__title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .p-landlord-services__text {
        font-size: 16px;
    }

    .p-landlord-services__figure {
        height: 220px;
        margin-top: 16px;
    }

    .p-landlord-flow {
        padding: 64px 0;
    }

    .p-landlord-flow__header-main {
        font-size: 26px;
        line-height: 1.4;
    }

    .p-landlord-flow__lead {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .p-landlord-flow__timeline {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .p-landlord-flow__step {
        padding-left: 58px;
    }

    .p-landlord-flow__step-header {
        position: absolute;
        left: 0;
        top: 0;
        width: 42px;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 0;
    }

    .p-landlord-flow__step-title {
        font-size: 17px;
    }

    .p-landlord-flow__step-text {
        font-size: 15px;
    }

    .u-hidden-pc {
        display: block;
    }
}