/* ── Life at RSBT 360 page ── */
.la360-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 88px 0 72px;
}
.la360-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.la360-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(12, 24, 48, .94) 0%, rgba(22, 18, 38, .86) 42%, rgba(31, 31, 31, .9) 100%);
}
.la360-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.la360-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
}
.la360-hero__copy { max-width: 640px; }
.la360-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--rsbt-gold);
}
.la360-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--rsbt-gold);
}
.la360-eyebrow--on-dark { color: #f0dca0; }
.la360-eyebrow--on-dark::before { background: #f0dca0; }
.la360-hero__title {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.02em;
}
.la360-hero__subtitle {
    margin: 14px 0 0;
    font-size: 15px;
    color: #d6b565;
    font-weight: 600;
}
.la360-hero__tagline {
    margin: 18px 0 0;
    font-size: clamp(18px, 2.4vw, 24px);
    line-height: 1.45;
    color: #f3f4f6;
    font-weight: 500;
}
.la360-breadcrumb {
    margin-top: 28px;
    font-size: 13px;
    color: #9ca3af;
}
.la360-breadcrumb a { color: #d6b565; }
.la360-breadcrumb a:hover { text-decoration: underline; }
.la360-hero__modes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.la360-mode-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.la360-mode-badge--online {
    background: rgba(59, 130, 246, .2);
    border: 1px solid rgba(96, 165, 250, .45);
    color: #bfdbfe;
}
.la360-mode-badge--hybrid {
    background: rgba(214, 181, 101, .18);
    border: 1px solid rgba(214, 181, 101, .5);
    color: #f0dca0;
}
.la360-hero__visual {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .12);
}
.la360-hero__visual img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.la360-hero__visual:hover img { transform: scale(1.03); }

.la360-intro p {
    margin: 0;
    font-size: 18px;
    line-height: 1.85;
    color: #374151;
    text-align: center;
}

.la360-stats {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b2e 50%, #1a1a1a 100%);
    padding: 48px 0;
}
.la360-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}
.la360-stat-card {
    text-align: center;
    padding: 28px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(214, 181, 101, .22);
    backdrop-filter: blur(8px);
    transition: transform .3s ease, border-color .3s ease;
}
.la360-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(214, 181, 101, .5);
}
.la360-stat-card__value {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: clamp(30px, 4.5vw, 42px);
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 20%, var(--rsbt-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.la360-stat-card__label {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #d1d5db;
}

.la360-sec-head { margin-bottom: 36px; }
.la360-sec-head--center { text-align: center; }
.la360-sec-head--center .la360-eyebrow { justify-content: center; }
.la360-sec-head h2 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 38px);
    color: #1f2937;
    line-height: 1.2;
}
.la360-sec-head__lead {
    margin: 14px auto 0;
    max-width: 680px;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.75;
}

.la360-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.la360-split--reverse .la360-split__content { order: 2; }
.la360-split--reverse .la360-split__media { order: 1; }
.la360-split__content h2 {
    margin: 0 0 16px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(26px, 3.5vw, 34px);
    color: #1f2937;
    line-height: 1.2;
}
.la360-split__content p {
    margin: 0;
    color: #4b5563;
    line-height: 1.8;
    font-size: 16px;
}
.la360-split__media {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .12);
}
.la360-split__media img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}
.la360-split__media:hover img { transform: scale(1.04); }

.la360-pillars {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}
.la360-pillar-card {
    background: #fff;
    border: 1px solid #ece7dc;
    border-radius: 14px;
    padding: 26px 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.la360-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, .1);
    border-color: #d6b565;
}
.la360-pillar-card__icon {
    display: inline-flex;
    font-size: 30px;
    margin-bottom: 12px;
}
.la360-pillar-card h3 {
    margin: 0 0 10px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #1f2937;
    line-height: 1.35;
}
.la360-pillar-card p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
}

.la360-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.la360-feature-card {
    background: #fff;
    border: 1px solid #ece7dc;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.la360-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, .09);
    border-color: #d6b565;
}
.la360-feature-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.la360-feature-card__icon {
    display: inline-flex;
    font-size: 26px;
    flex-shrink: 0;
}
.la360-feature-card h3 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    color: #1f2937;
    line-height: 1.35;
}
.la360-feature-card__modes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.la360-feature-mode {
    padding: 14px;
    border-radius: 12px;
    background: #faf8f4;
    border: 1px solid #f0ebe2;
}
.la360-feature-mode__label {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.la360-feature-mode__label--online {
    background: rgba(59, 130, 246, .12);
    color: #1d4ed8;
}
.la360-feature-mode__label--hybrid {
    background: rgba(214, 181, 101, .18);
    color: #92710a;
}
.la360-feature-mode p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: #4b5563;
}

.la360-testimonials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.la360-testimonial-card {
    position: relative;
    margin: 0;
    padding: 32px 28px 28px;
    background: #fff;
    border: 1px solid #ece7dc;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .06);
    transition: transform .35s ease, box-shadow .35s ease;
}
.la360-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .1);
}
.la360-testimonial-card__mark {
    position: absolute;
    top: 12px;
    left: 20px;
    font-family: Georgia, serif;
    font-size: 64px;
    line-height: 1;
    color: rgba(214, 181, 101, .35);
}
.la360-testimonial-card__text {
    position: relative;
    margin: 24px 0 20px;
    font-size: 16px;
    line-height: 1.75;
    color: #374151;
    font-style: italic;
}
.la360-testimonial-card footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.la360-testimonial-card footer strong {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #1f2937;
}
.la360-testimonial-card footer span {
    font-size: 13px;
    color: #6b7280;
}

.la360-why {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 44px;
    align-items: center;
    background: linear-gradient(135deg, #fdf9f4 0%, #fff 100%);
    border: 1px solid #ece7dc;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .06);
}
.la360-why__content h2 {
    margin: 0 0 14px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(26px, 3.5vw, 34px);
    color: #1f2937;
    line-height: 1.2;
}
.la360-why__content p {
    margin: 0 0 18px;
    color: #4b5563;
    line-height: 1.8;
    font-size: 16px;
}
.la360-checklist {
    margin: 0;
    padding: 0;
    list-style: none;
}
.la360-checklist li {
    position: relative;
    padding: 10px 0 10px 28px;
    color: #374151;
    line-height: 1.6;
    border-bottom: 1px solid #f0ebe2;
}
.la360-checklist li:last-child { border-bottom: 0; }
.la360-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--rsbt-gold);
    font-weight: 700;
}
.la360-why__media {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .1);
}
.la360-why__media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}
.la360-why__media:hover img { transform: scale(1.04); }

.la360-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b2e 45%, #1a1a1a 100%);
    color: #fff;
    padding: 72px 0;
    text-align: center;
}
.la360-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.la360-cta h2 {
    margin: 0 0 14px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.2;
}
.la360-cta__lead {
    margin: 0 0 28px;
    max-width: 560px;
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.75;
}
.la360-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

@media (max-width: 1024px) {
    .la360-hero__inner,
    .la360-split,
    .la360-why {
        grid-template-columns: 1fr;
    }
    .la360-split--reverse .la360-split__content,
    .la360-split--reverse .la360-split__media {
        order: unset;
    }
    .la360-stats__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .la360-pillars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .la360-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .la360-hero { padding: 72px 0 56px; }
    .la360-stats__grid,
    .la360-pillars,
    .la360-testimonials {
        grid-template-columns: 1fr;
    }
    .la360-feature-card__modes {
        grid-template-columns: 1fr;
    }
    .la360-why {
        padding: 28px 22px;
    }
}
