/* g410/leasing — design "leasing" de la home (bundle standalone) */

.leasing {
    --le-ink: var(--ink, #00202f);
    --le-blue: var(--blue, #359ee0);
    --le-blue-deep: var(--blue-deep, #1f4a7e);
    --le-radius: var(--radius-lg, 22px);
    --le-display: var(--font-display, "Manrope", ui-sans-serif, system-ui, sans-serif);

    background: var(--le-ink);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 96px 0;
}
.leasing::before {
    content: "";
    position: absolute;
    inset: -20% -10% auto auto;
    width: 620px;
    height: 620px;
    background: radial-gradient(closest-side, rgba(53, 158, 224, .22), transparent 70%);
    pointer-events: none;
}
.leasing > .container {
    max-width: var(--container-width, 1240px);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.leasing .section-head {
    max-width: 780px;
    margin: 0 auto 56px;
    text-align: center;
}
.leasing .section-head .eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--le-blue);
    margin-bottom: 16px;
}
.leasing .section-head .eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--le-blue);
    display: inline-block;
}
.leasing .section-head h2 {
    margin: 0;
    font-family: var(--le-display);
    font-size: clamp(28px, 3.4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.028em;
    line-height: 1.1;
    color: #fff;
    text-wrap: balance;
}
.leasing .section-head p {
    font-size: 18px;
    color: rgba(255, 255, 255, .72);
    margin-top: 10px;
}

.lease-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}
.lease-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--le-radius);
    padding: 28px;
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.lease-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .07);
    border-color: rgba(53, 158, 224, .45);
}
.lease-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--le-blue);
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(53, 158, 224, .12);
    margin-bottom: 16px;
}
.lease-card h3 {
    font-family: var(--le-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 10px;
    color: #fff;
}
.lease-card p {
    color: rgba(255, 255, 255, .7);
    font-size: 14.5px;
    margin: 0 0 20px;
    line-height: 1.5;
}
.lease-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.lease-bullets li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, .88);
    line-height: 1.45;
}
.lease-bullets li svg {
    width: 16px;
    height: 16px;
    flex: none;
    color: var(--le-blue);
    margin-top: 3px;
}
.lease-link {
    color: var(--le-blue);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.lease-link svg {
    width: 14px;
    height: 14px;
    transition: transform .2s ease;
}
.lease-card:hover .lease-link svg {
    transform: translateX(4px);
}

.lease-footer {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
.lease-footer .btn {
    height: 45px;
    min-height: 45px;
    padding: 0 26px;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .15s ease;
}
.lease-footer .btn-light {
    background: #fff;
    color: var(--le-ink);
}
.lease-footer .btn-light:hover {
    background: var(--le-blue);
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .lease-grid { grid-template-columns: 1fr; }
    .leasing { padding: 64px 0; }
}
