:root {
    --lm-ink-900: #0d3157;
    --lm-ink-800: #194f87;
    --lm-ink-700: #2a67a7;
    --lm-sky-100: #f6fbff;
    --lm-sky-200: #edf6ff;
    --lm-sky-300: #d8ebff;
    --lm-sun-300: #ffd37a;
    --lm-sun-400: #f6b248;
    --lm-coral-400: #ef7a50;
    --lm-heading-gradient: linear-gradient(135deg, #0d3157 0%, #245f98 42%, #ef7a50 78%, #f6b248 100%);
    --lm-icon-gradient: linear-gradient(135deg, #ef7a50 0%, #f6b248 38%, #2a67a7 100%);
    --lm-white: #ffffff;
    --lm-shadow-soft: 0 18px 38px rgba(17, 51, 88, 0.1);
    --lm-shadow-strong: 0 28px 64px rgba(17, 51, 88, 0.16);
    --lm-transition: 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
    --lm-hero-offset: 0px;
}

html {
    scroll-behavior: smooth;
}

body.lm-site {
    color: #42526b;
    background:
        radial-gradient(circle at 12% 10%, rgba(42, 103, 167, 0.12), transparent 24%),
        radial-gradient(circle at 88% 8%, rgba(246, 178, 72, 0.18), transparent 26%),
        radial-gradient(circle at 80% 38%, rgba(239, 122, 80, 0.08), transparent 18%),
        linear-gradient(180deg, #f8fbff 0%, #f1f8ff 42%, #fff9f1 100%);
}

body.lm-site::before,
body.lm-site::after {
    content: "";
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: 0;
}

body.lm-site::before {
    top: 18vh;
    left: -8rem;
    width: 18rem;
    height: 18rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(42, 103, 167, 0.16) 0%, rgba(42, 103, 167, 0) 72%);
    filter: blur(10px);
    animation: lm-float 16s ease-in-out infinite;
}

body.lm-site::after {
    right: -5rem;
    bottom: 18vh;
    width: 16rem;
    height: 16rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(246, 178, 72, 0.2) 0%, rgba(246, 178, 72, 0) 72%);
    filter: blur(12px);
    animation: lm-float 14s ease-in-out infinite reverse;
}

body.lm-site main,
body.lm-site header,
body.lm-site footer {
    position: relative;
    z-index: 1;
}

body.lm-site h1,
body.lm-site h2,
body.lm-site h3,
body.lm-site h4,
body.lm-site h5,
body.lm-site h6 {
    font-family: "Sora", "Poppins", sans-serif;
    letter-spacing: -0.03em;
}

body.lm-site p,
body.lm-site li,
body.lm-site a,
body.lm-site input,
body.lm-site textarea,
body.lm-site button {
    font-family: "Manrope", "Nunito", sans-serif;
}

::selection {
    color: var(--lm-white);
    background: rgba(42, 103, 167, 0.72);
}

a,
button,
input,
textarea {
    transition:
        color var(--lm-transition),
        background-color var(--lm-transition),
        border-color var(--lm-transition),
        box-shadow var(--lm-transition),
        transform var(--lm-transition),
        opacity var(--lm-transition);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(42, 103, 167, 0.22);
    outline-offset: 3px;
}

.lm-topbar {
    position: relative;
    z-index: 41;
}

.lm-site-header {
    transition:
        box-shadow var(--lm-transition),
        border-color var(--lm-transition),
        background-color var(--lm-transition);
    background-color: rgba(255, 255, 255, 0.98);
}

.lm-site-header.lm-scrolled {
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

.lm-brand {
    position: relative;
}

.lm-brand-mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    padding: 0.3rem;
}

.lm-brand-mark::after {
    content: none;
}

.lm-nav-link {
    position: relative;
    border: 1px solid transparent;
    letter-spacing: 0.01em;
}

.lm-nav-link::before {
    content: none;
}

.lm-nav-link::after {
    content: none;
}

.lm-nav-link:hover,
.lm-nav-link[aria-current="page"] {
    color: #d81b79;
    background-color: #fff1f8;
    border-color: rgba(216, 27, 121, 0.14);
}

.lm-nav-link:hover::before,
.lm-nav-link[aria-current="page"]::before,
.lm-nav-link[aria-current="page"]::before {
    opacity: 1;
}

.lm-topbar-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.lm-topbar-social:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.lm-header-cta {
    border: 1px solid transparent;
    background: linear-gradient(135deg, #d81b79 0%, #b91668 100%);
    box-shadow: 0 14px 28px rgba(185, 22, 104, 0.2);
    transition:
        transform var(--lm-transition),
        box-shadow var(--lm-transition),
        background-color var(--lm-transition);
}

.lm-header-cta:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(185, 22, 104, 0.28);
}

.lm-button,
.lm-menu-toggle {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transform: translateY(0);
}

.lm-button::after,
.lm-menu-toggle::after {
    content: "";
    position: absolute;
    top: -180%;
    left: -24%;
    width: 34%;
    height: 420%;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
    transform: rotate(22deg) translateX(-240%);
    transition:
        transform 700ms ease,
        opacity 200ms ease;
    pointer-events: none;
}

.lm-menu-toggle {
    box-shadow: none;
}

.lm-menu-toggle::after {
    content: none;
}

.lm-button:hover,
.lm-menu-toggle:hover {
    transform: translateY(-3px);
}

.lm-button:hover::after,
.lm-menu-toggle:hover::after {
    opacity: 1;
    transform: rotate(22deg) translateX(560%);
}

.lm-menu-toggle:hover {
    transform: none;
    border-color: rgba(216, 27, 121, 0.24);
    color: #d81b79;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.lm-button-primary {
    color: #fff !important;
    background-color: #1f5e9f !important;
    background-image: linear-gradient(135deg, #1f5e9f 0%, #2f76bd 100%) !important;
    border-color: transparent !important;
    box-shadow:
        0 18px 32px rgba(31, 94, 159, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.lm-button-secondary {
    color: #0f172a !important;
    background-color: #f6b248 !important;
    background-image: linear-gradient(135deg, #ffd37a 0%, #ef7a50 100%) !important;
    border-color: transparent !important;
    box-shadow:
        0 18px 34px rgba(239, 122, 80, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.lm-button-outline {
    box-shadow: 0 16px 28px rgba(17, 51, 88, 0.1);
}

.lm-button-whatsapp,
.lm-button-sky {
    box-shadow: 0 18px 30px rgba(17, 51, 88, 0.22);
}

.lm-button-primary:hover {
    background-image: linear-gradient(135deg, #194f87 0%, #245f9a 100%) !important;
}

.lm-button-secondary:hover {
    background-image: linear-gradient(135deg, #ffc95f 0%, #e86b40 100%) !important;
}

.lm-button-whatsapp {
    color: #fff !important;
    background-color: #22c55e !important;
    background-image: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    border-color: transparent !important;
}

.lm-button-whatsapp:hover {
    background-image: linear-gradient(135deg, #1fb558 0%, #15803d 100%) !important;
}

.lm-button-sky {
    color: #fff !important;
    background-color: #2563eb !important;
    background-image: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    border-color: transparent !important;
}

.lm-button-sky:hover {
    background-image: linear-gradient(135deg, #2159d3 0%, #1e40af 100%) !important;
}

.lm-inline-link,
.lm-top-link,
.lm-footer-link {
    position: relative;
}

.lm-inline-link::after,
.lm-top-link::after,
.lm-footer-link::after {
    content: none;
}

.lm-icon-chip {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(42, 103, 167, 0.12);
    background:
        radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.9), transparent 40%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(229, 241, 255, 0.92));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 18px 30px rgba(17, 51, 88, 0.12);
}

.lm-icon-chip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(246, 178, 72, 0.16), rgba(42, 103, 167, 0.08) 52%, rgba(239, 122, 80, 0.16));
    pointer-events: none;
}

.lm-icon-chip::after {
    content: "";
    position: absolute;
    inset: 0.36rem;
    border-radius: 1rem;
    border: 1px dashed rgba(42, 103, 167, 0.14);
    pointer-events: none;
}

.lm-icon-chip,
.lm-contact-row-icon,
.lm-hero-arrow {
    transition:
        transform var(--lm-transition),
        box-shadow var(--lm-transition),
        border-color var(--lm-transition),
        background var(--lm-transition);
}

.lm-icon-chip > * {
    position: relative;
    z-index: 1;
}

.lm-icon-chip i,
.lm-contact-row-icon i {
    color: #ef7a50 !important;
    background-image: var(--lm-icon-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 6px 12px rgba(239, 122, 80, 0.2));
}

body.lm-site #lm-hero-carousel h1,
body.lm-site .lm-inner-hero h1 {
    text-shadow: 0 12px 34px rgba(4, 18, 39, 0.38);
}

body.lm-site main section:not(#lm-hero-carousel):not(.lm-inner-hero) h2:not(.text-white) {
    color: #143d6b;
    background-image: var(--lm-heading-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

body.lm-site main section:not(#lm-hero-carousel):not(.lm-inner-hero) h3:not(.text-white),
body.lm-site main section:not(#lm-hero-carousel):not(.lm-inner-hero) h4:not(.text-white) {
    color: #143d6b;
    text-shadow: 0 8px 24px rgba(17, 51, 88, 0.08);
}

body.lm-site main .fa-check-circle,
body.lm-site main .fa-star,
body.lm-site main .fa-quote-right {
    color: #ef7a50 !important;
    text-shadow: 0 8px 18px rgba(239, 122, 80, 0.2);
}

body.lm-site main .lm-contact-row-icon {
    border-color: rgba(239, 122, 80, 0.16);
    background:
        radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.96), transparent 36%),
        linear-gradient(145deg, rgba(255, 248, 238, 0.98), rgba(230, 242, 255, 0.94) 58%, rgba(255, 232, 219, 0.98));
    box-shadow: 0 14px 26px rgba(17, 51, 88, 0.1);
}

body.lm-site main article:hover .lm-icon-chip,
body.lm-site main .lm-contact-row:hover .lm-contact-row-icon,
body.lm-site .lm-hero-arrow:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 22px 34px rgba(17, 51, 88, 0.16);
}

main section {
    position: relative;
    overflow: clip;
    isolation: isolate;
}

main section > * {
    position: relative;
    z-index: 1;
}

body.lm-site .lm-home-section {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
}

body.lm-site .lm-home-section .lm-section-heading {
    margin-bottom: 2rem !important;
}

body.lm-site .lm-home-section .lm-section-heading > p:first-child {
    margin-bottom: 0.85rem !important;
}

body.lm-site .lm-home-section .lm-section-heading > p:first-child,
.lm-foundation-eyebrow,
.lm-google-reviews-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.15rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(42, 103, 167, 0.12);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 12px 24px rgba(31, 94, 159, 0.08);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #165ea7;
}

body.lm-site .lm-home-section .lm-section-heading h2,
.lm-foundation-heading,
.lm-unified-section-title {
    margin: 0 auto;
    max-width: 760px;
    font-size: clamp(2.2rem, 4.2vw, 3.5rem);
    font-weight: 600;
    line-height: 1.14;
    letter-spacing: -0.035em;
    color: #0e2a47;
}

.lm-section-subheading,
body.lm-site .lm-home-section .lm-section-heading > p:last-child {
    margin: 1rem auto 0 !important;
    max-width: 760px;
    font-size: 1.02rem;
    line-height: 1.72;
    color: #4a5a6a;
}

body.lm-site .lm-foundation-home {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(180deg, rgba(243, 247, 252, 0.94), rgba(248, 251, 255, 0.97)),
        radial-gradient(circle at 14% 18%, rgba(66, 133, 244, 0.1), transparent 24%),
        radial-gradient(circle at 86% 12%, rgba(251, 188, 5, 0.12), transparent 22%),
        radial-gradient(circle at 78% 76%, rgba(52, 168, 83, 0.08), transparent 20%),
        url("../img/hero/hero-slider-4.jpg") center/cover no-repeat !important;
}

.lm-foundation-home .mt-\[80px\] {
    margin-top: 3.75rem !important;
}

.lm-foundation-home .mt-16 {
    margin-top: 3rem !important;
}

.lm-foundation-home .mt-12 {
    margin-top: 2.25rem !important;
}

.lm-foundation-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 42%, rgba(255, 255, 255, 0.24) 100%),
        radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.55), transparent 20%),
        radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.42), transparent 18%);
    pointer-events: none;
    z-index: 0;
}

.lm-foundation-home::after {
    content: "";
    position: absolute;
    top: -6%;
    right: -6%;
    width: 24rem;
    height: 24rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.12) 0%, rgba(66, 133, 244, 0) 68%);
    filter: blur(8px);
    animation: lm-foundation-glow 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.lm-foundation-home > .mx-auto {
    position: relative;
    z-index: 1;
}

.lm-google-reviews-shell,
.lm-safety-ref-shell {
    padding: clamp(1.75rem, 3vw, 2.8rem);
}

.lm-home-shell,
.lm-contact-card,
.lm-contact-form-card {
    padding: clamp(1.25rem, 2.5vw, 2rem);
}

main section::before,
main section::after {
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: 0.9;
}

main section::before {
    top: 2rem;
    right: -4rem;
    width: 18rem;
    height: 18rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(42, 103, 167, 0.16) 0%, rgba(42, 103, 167, 0.02) 40%, rgba(42, 103, 167, 0) 72%);
    animation: lm-float 15s ease-in-out infinite;
}

main section::after {
    left: -1.8rem;
    bottom: -3.8rem;
    width: 13rem;
    height: 13rem;
    border-radius: 50%;
    border: 18px solid rgba(246, 178, 72, 0.12);
    animation: lm-float 17s ease-in-out infinite reverse;
}

main section:nth-of-type(even)::before {
    right: auto;
    left: -4rem;
    background: radial-gradient(circle, rgba(246, 178, 72, 0.18) 0%, rgba(246, 178, 72, 0.03) 38%, rgba(246, 178, 72, 0) 72%);
}

main section:nth-of-type(even)::after {
    left: auto;
    right: -1.6rem;
    border-color: rgba(42, 103, 167, 0.12);
}

#lm-hero-carousel {
    --lm-pointer-x: 0;
    --lm-pointer-y: 0;
}

.lm-hero-stage {
    height: calc(100vh - var(--lm-hero-offset));
    min-height: calc(100vh - var(--lm-hero-offset));
}

#lm-hero-carousel::before {
    top: 10%;
    right: 8%;
    width: 15rem;
    height: 15rem;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.08) 32%, rgba(255, 255, 255, 0) 68%);
    transform: translate3d(calc(var(--lm-pointer-x) * 16px), calc(var(--lm-pointer-y) * 12px), 0);
    filter: blur(2px);
}

#lm-hero-carousel::after {
    bottom: 7%;
    left: 5%;
    width: 10rem;
    height: 10rem;
    border-width: 10px;
    border-color: rgba(255, 211, 122, 0.28);
    transform: translate3d(calc(var(--lm-pointer-x) * -12px), calc(var(--lm-pointer-y) * -10px), 0);
}

.lm-hero-slide > :first-child {
    transform: scale(1.05);
    transition: transform 6.8s ease;
    will-change: transform;
}

.lm-hero-slide.opacity-100 > :first-child {
    transform: scale(1.12);
}

#lm-hero-carousel .lm-hero-content > * {
    opacity: 0;
    transform: translateY(28px);
}

.lm-hero-slide.opacity-100 .lm-hero-content > * {
    animation: lm-rise 700ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.lm-hero-slide.opacity-100 .lm-hero-content > *:nth-child(1) {
    animation-delay: 120ms;
}

.lm-hero-slide.opacity-100 .lm-hero-content > *:nth-child(2) {
    animation-delay: 200ms;
}

.lm-hero-slide.opacity-100 .lm-hero-content > *:nth-child(3) {
    animation-delay: 280ms;
}

.lm-hero-slide.opacity-100 .lm-hero-content > *:nth-child(4) {
    animation-delay: 360ms;
}

.lm-hero-slide.opacity-100 .lm-hero-content > *:nth-child(5) {
    animation-delay: 440ms;
}

.lm-hero-badge,
.lm-hero-mini-badge {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(20px);
    box-shadow: 0 22px 40px rgba(8, 25, 44, 0.24);
}

.lm-hero-badge {
    position: relative;
    overflow: hidden;
}

.lm-hero-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 211, 122, 0.12), rgba(42, 103, 167, 0.04));
    pointer-events: none;
}

.lm-hero-dot {
    position: relative;
    flex: 0 0 auto;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.32);
    box-shadow: 0 6px 18px rgba(8, 25, 44, 0.22);
}

.lm-hero-dots-wrap {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(145deg, rgba(9, 24, 43, 0.34), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 36px rgba(8, 25, 44, 0.22);
}

.lm-hero-arrow {
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 36px rgba(8, 25, 44, 0.22);
}

.lm-hero-arrow:hover {
    color: var(--lm-ink-900);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.lm-section-heading {
    position: relative;
}

.lm-section-heading::after {
    content: none;
}

main article:not(.lm-hero-slide),
main a.group.relative.overflow-hidden.rounded-2xl,
.lm-elevated-surface {
    position: relative;
    box-shadow: var(--lm-shadow-soft);
    transition:
        transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color var(--lm-transition),
        background-color var(--lm-transition);
}

main article:not(.lm-hero-slide)::before,
main a.group.relative.overflow-hidden.rounded-2xl::before,
.lm-elevated-surface::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(140deg, rgba(42, 103, 167, 0.06), rgba(255, 255, 255, 0) 40%, rgba(246, 178, 72, 0.08) 100%);
    opacity: 0;
    transition: opacity var(--lm-transition);
    pointer-events: none;
}

main article:not(.lm-hero-slide):hover,
main a.group.relative.overflow-hidden.rounded-2xl:hover,
.lm-elevated-surface:hover {
    transform: translateY(-8px);
    box-shadow: var(--lm-shadow-strong);
}

main article:not(.lm-hero-slide):hover::before,
main a.group.relative.overflow-hidden.rounded-2xl:hover::before,
.lm-elevated-surface:hover::before {
    opacity: 1;
}

main img,
main iframe {
    transition:
        transform 700ms ease,
        box-shadow var(--lm-transition);
}

main article:not(.lm-hero-slide):hover img,
main a.group.relative.overflow-hidden.rounded-2xl:hover img,
.lm-elevated-surface:hover img {
    transform: scale(1.04);
}

.lm-home-band {
    z-index: 15;
}

.lm-home-band::before {
    content: "";
    position: absolute;
    inset: 1rem 8% auto;
    height: 70%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(42, 103, 167, 0.14), rgba(246, 178, 72, 0.16));
    filter: blur(52px);
    pointer-events: none;
}

.lm-home-band-card,

.lm-home-overview,
.lm-why-card,
.lm-method-card,
.lm-potential-card,
.lm-pillar-card,
.lm-safety-card,
.lm-testimonial-card,
.lm-contact-card,
.lm-contact-form-card {
    border: 1px solid rgba(42, 103, 167, 0.1);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.9), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 255, 0.9));
}

.lm-home-band-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 100%;
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 50px rgba(17, 51, 88, 0.16);
}

.lm-home-band-card::before {
    content: "";
    position: absolute;
    inset: auto -2rem -2.6rem auto;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    filter: blur(10px);
    pointer-events: none;
}

.lm-home-band-card::after {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 0.38rem;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.85;
    pointer-events: none;
}

.lm-home-band-icon,
.lm-program-tag,
.lm-overview-stat,
.lm-overview-feature,
.lm-spotlight-pill,
.lm-director-note {
    border: 1px solid rgba(42, 103, 167, 0.1);
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.95), transparent 35%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(231, 242, 255, 0.92));
    box-shadow: 0 16px 30px rgba(17, 51, 88, 0.08);
}

.lm-home-band-card:nth-child(1) {
    color: #2c65b9;
    border-color: rgba(44, 101, 185, 0.16);
    background:
        radial-gradient(circle at 85% 18%, rgba(124, 178, 255, 0.42), transparent 24%),
        linear-gradient(140deg, rgba(246, 250, 255, 0.98) 0%, rgba(227, 240, 255, 0.95) 52%, rgba(202, 227, 255, 0.92) 100%);
}

.lm-home-band-card:nth-child(2) {
    color: #0f7a82;
    border-color: rgba(15, 122, 130, 0.16);
    background:
        radial-gradient(circle at 85% 18%, rgba(96, 221, 212, 0.38), transparent 24%),
        linear-gradient(140deg, rgba(244, 255, 253, 0.98) 0%, rgba(219, 248, 245, 0.95) 52%, rgba(193, 241, 236, 0.92) 100%);
}

.lm-home-band-card:nth-child(3) {
    color: #8857d4;
    border-color: rgba(136, 87, 212, 0.16);
    background:
        radial-gradient(circle at 85% 18%, rgba(197, 152, 255, 0.36), transparent 24%),
        linear-gradient(140deg, rgba(251, 247, 255, 0.98) 0%, rgba(239, 228, 255, 0.95) 52%, rgba(226, 210, 255, 0.92) 100%);
}

.lm-home-band-card:nth-child(4) {
    color: #c46615;
    border-color: rgba(196, 102, 21, 0.16);
    background:
        radial-gradient(circle at 85% 18%, rgba(255, 199, 110, 0.42), transparent 24%),
        linear-gradient(140deg, rgba(255, 250, 242, 0.98) 0%, rgba(255, 239, 215, 0.95) 52%, rgba(255, 227, 181, 0.92) 100%);
}

.lm-home-band-card:nth-child(1) .lm-home-band-icon {
    color: #2c65b9;
    border-color: rgba(44, 101, 185, 0.14);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(211, 230, 255, 0.95));
}

.lm-home-band-card:nth-child(2) .lm-home-band-icon {
    color: #0f7a82;
    border-color: rgba(15, 122, 130, 0.14);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(205, 244, 240, 0.95));
}

.lm-home-band-card:nth-child(3) .lm-home-band-icon {
    color: #8857d4;
    border-color: rgba(136, 87, 212, 0.14);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(233, 220, 255, 0.95));
}

.lm-home-band-card:nth-child(4) .lm-home-band-icon {
    color: #c46615;
    border-color: rgba(196, 102, 21, 0.14);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 233, 198, 0.95));
}

.lm-home-band-card:nth-child(1) .text-3xl,
.lm-home-band-card:nth-child(1) .md\:text-4xl,
.lm-home-band-card:nth-child(2) .text-3xl,
.lm-home-band-card:nth-child(2) .md\:text-4xl,
.lm-home-band-card:nth-child(3) .text-3xl,
.lm-home-band-card:nth-child(3) .md\:text-4xl,
.lm-home-band-card:nth-child(4) .text-3xl,
.lm-home-band-card:nth-child(4) .md\:text-4xl {
    color: currentColor;
}

.lm-home-shell {
    box-shadow: 0 32px 64px rgba(17, 51, 88, 0.14);
}

.lm-home-shell,
.lm-home-overview,
.lm-home-quote {
    border: none;
    box-shadow: none;
}

.lm-program-grid-card {
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    transition:
        transform var(--lm-transition),
        box-shadow var(--lm-transition),
        border-color var(--lm-transition);
}

.lm-program-grid-card:hover {
    transform: translateY(-6px);
    border-color: rgba(216, 27, 121, 0.18);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.12);
}

.lm-program-grid-media {
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(42, 103, 167, 0.14), rgba(216, 27, 121, 0.12));
}

.lm-program-grid-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.lm-program-grid-card:hover .lm-program-grid-media img {
    transform: scale(1.04);
}

.lm-program-grid-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    color: #d81b79;
    border: 1px solid rgba(216, 27, 121, 0.14);
    background: #fff1f8;
}

.lm-program-grid-age {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #475569;
    background: #f8fafc;
}

.lm-program-grid-button {
    background: linear-gradient(135deg, #1f5e9f 0%, #2f76bd 100%);
    box-shadow: 0 12px 22px rgba(31, 94, 159, 0.2);
}

.lm-program-grid-button:hover {
    color: #fff;
    background: linear-gradient(135deg, #194f87 0%, #245f9a 100%);
}

.lm-why-grid-card {
    border: 1px solid rgba(42, 103, 167, 0.1);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.92), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.94));
    box-shadow: 0 16px 30px rgba(17, 51, 88, 0.08);
    transition:
        transform var(--lm-transition),
        box-shadow var(--lm-transition),
        border-color var(--lm-transition);
}

.lm-why-grid-card:hover {
    transform: translateY(-4px);
    border-color: rgba(42, 103, 167, 0.16);
    box-shadow: 0 22px 38px rgba(17, 51, 88, 0.12);
}

.lm-why-grid-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 1rem;
    color: #1f5e9f;
    border: 1px solid rgba(42, 103, 167, 0.12);
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.96), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(221, 236, 255, 0.95));
    box-shadow: 0 12px 24px rgba(17, 51, 88, 0.08);
}

.lm-why-grid-card:nth-child(1) {
    background: linear-gradient(145deg, #eef6ff 0%, #dcecff 100%);
}

.lm-why-grid-card:nth-child(1) .lm-why-grid-icon {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.lm-why-grid-card:nth-child(2) {
    background: linear-gradient(145deg, #f4fff4 0%, #def7df 100%);
}

.lm-why-grid-card:nth-child(2) .lm-why-grid-icon {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
}

.lm-why-grid-card:nth-child(3) {
    background: linear-gradient(145deg, #f2fbff 0%, #d9f2fb 100%);
}

.lm-why-grid-card:nth-child(3) .lm-why-grid-icon {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #06b6d4 0%, #0f766e 100%);
}

.lm-why-grid-card:nth-child(4) {
    background: linear-gradient(145deg, #fff8e8 0%, #ffe8b8 100%);
}

.lm-why-grid-card:nth-child(4) .lm-why-grid-icon {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
}

.lm-why-grid-card:nth-child(5) {
    background: linear-gradient(145deg, #fff0f4 0%, #ffdbe7 100%);
}

.lm-why-grid-card:nth-child(5) .lm-why-grid-icon {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #fb7185 0%, #e11d48 100%);
}

.lm-why-grid-card:nth-child(6) {
    background: linear-gradient(145deg, #f3efff 0%, #e4dafd 100%);
}

.lm-why-grid-card:nth-child(6) .lm-why-grid-icon {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.lm-program-card,
.lm-method-card,
.lm-pillar-card,
.lm-testimonial-card,
.lm-contact-form-card {
    overflow: hidden;
}

.lm-program-card::after,
.lm-method-card::after,
.lm-pillar-card::after,
.lm-testimonial-card::after {
    content: "";
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(246, 178, 72, 0.2), rgba(246, 178, 72, 0));
    pointer-events: none;
}

.lm-card-link {
    position: relative;
}

.lm-card-link i {
    transition: transform var(--lm-transition);
}

.lm-card-link:hover i {
    transform: translateX(4px);
}

.lm-home-spotlight {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 25%),
        linear-gradient(145deg, #0d3157 0%, #174f87 58%, #2f76bd 100%);
    box-shadow: 0 30px 62px rgba(13, 49, 87, 0.28);
}

.lm-home-spotlight::before {
    content: "";
    position: absolute;
    right: -3rem;
    bottom: -3rem;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    border: 18px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.lm-spotlight-pill {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(14px);
    box-shadow: none;
}

.lm-why-card {
    min-height: 100%;
}

.lm-home-overview {
    padding: 1.8rem;
    box-shadow: none;
}

.lm-overview-stat {
    padding: 1.25rem;
}

.lm-overview-feature {
    color: var(--lm-ink-900);
}

.lm-potential-card,
.lm-safety-card {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.88), transparent 28%),
        linear-gradient(145deg, rgba(238, 243, 251, 0.94), rgba(255, 255, 255, 0.94));
}

.lm-safety-ref-shell {
    border-radius: 2.5rem;
    background: #ffd48c;
    padding: clamp(2.25rem, 4vw, 3.4rem);
}

.lm-safety-ref-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.25rem;
}

.lm-safety-ref-card {
    min-height: 240px;
    border-radius: 2rem;
    background: #fffdf9;
    padding: 2rem 1.2rem 1.7rem;
    text-align: center;
    box-shadow: 0 12px 28px rgba(78, 54, 20, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition:
        transform var(--lm-transition),
        box-shadow var(--lm-transition);
}

.lm-safety-ref-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(78, 54, 20, 0.12);
}

.lm-safety-ref-icon {
    width: 5.2rem;
    height: 5.2rem;
    margin-bottom: 1.4rem;
    border-radius: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.35rem;
    line-height: 1;
}

.lm-safety-ref-card h3 {
    max-width: 13rem;
    margin: 0;
    color: #243343;
    font-family: "Manrope", "Nunito", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.lm-safety-ref-card--teal .lm-safety-ref-icon {
    color: #44b9c7;
}

.lm-safety-ref-card--rose .lm-safety-ref-icon {
    color: #f0536e;
}

.lm-safety-ref-card--amber .lm-safety-ref-icon {
    color: #f1aa2c;
}

.lm-safety-ref-card--lime .lm-safety-ref-icon {
    color: #7eb84d;
}

.lm-safety-ref-card--green .lm-safety-ref-icon {
    color: #8bb739;
}

.lm-safety-ref-card--orange .lm-safety-ref-icon {
    color: #ef6b3e;
}

@media (min-width: 640px) {
    .lm-safety-ref-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 960px) {
    .lm-safety-ref-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .lm-safety-ref-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .lm-safety-ref-card {
        min-height: 228px;
        padding-inline: 1rem;
    }

    .lm-safety-ref-card h3 {
        font-size: 0.98rem;
    }
}

.lm-curriculum-home .lm-method-card,
.lm-curriculum-home .lm-potential-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 20px 38px rgba(17, 51, 88, 0.1);
    transition:
        transform var(--lm-transition),
        box-shadow var(--lm-transition),
        border-color var(--lm-transition);
}

.lm-curriculum-lead {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.lm-curriculum-lead-icon {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #3b82f6 0%, #ec4899 100%) !important;
    box-shadow: 0 14px 28px rgba(59, 130, 246, 0.16);
}

.lm-curriculum-lead-title {
    font-size: clamp(1.8rem, 2vw, 2.45rem);
    font-weight: 700;
    line-height: 1.15;
    color: #42526b;
    letter-spacing: -0.03em;
}

.lm-curriculum-home .lm-method-card:hover,
.lm-curriculum-home .lm-potential-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 48px rgba(17, 51, 88, 0.14);
}

.lm-curriculum-home .lm-method-card::before,
.lm-curriculum-home .lm-potential-card::before {
    content: "";
    position: absolute;
    inset: auto -2rem -2rem auto;
    width: 7rem;
    height: 7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    filter: blur(4px);
    pointer-events: none;
}

.lm-curriculum-home .lm-method-icon,
.lm-curriculum-home .lm-potential-icon {
    position: relative;
    z-index: 1;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 14px 28px rgba(17, 51, 88, 0.12);
}

.lm-curriculum-home .lm-method-card:nth-child(1) {
    background: linear-gradient(145deg, #eef6ff 0%, #dcecff 100%);
}

.lm-curriculum-home .lm-method-card:nth-child(1) .lm-method-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.lm-curriculum-home .lm-method-card:nth-child(2) {
    background: linear-gradient(145deg, #f4fff4 0%, #def7df 100%);
}

.lm-curriculum-home .lm-method-card:nth-child(2) .lm-method-icon {
    background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
}

.lm-curriculum-home .lm-method-card:nth-child(3) {
    background: linear-gradient(145deg, #f2fbff 0%, #d9f2fb 100%);
}

.lm-curriculum-home .lm-method-card:nth-child(3) .lm-method-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0f766e 100%);
}

.lm-curriculum-home .lm-method-card:nth-child(4) {
    background: linear-gradient(145deg, #fff2fb 0%, #ffe0f1 100%);
}

.lm-curriculum-home .lm-method-card:nth-child(4) .lm-method-icon {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.lm-curriculum-home .lm-potential-card:nth-child(1) {
    background: linear-gradient(145deg, #eef7ff 0%, #deebff 100%);
}

.lm-curriculum-home .lm-potential-card:nth-child(1) .lm-potential-icon {
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
}

.lm-curriculum-home .lm-potential-card:nth-child(2) {
    background: linear-gradient(145deg, #fff8e8 0%, #ffeab8 100%);
}

.lm-curriculum-home .lm-potential-card:nth-child(2) .lm-potential-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.lm-curriculum-home .lm-potential-card:nth-child(3) {
    background: linear-gradient(145deg, #f3efff 0%, #e4dafd 100%);
}

.lm-curriculum-home .lm-potential-card:nth-child(3) .lm-potential-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.lm-curriculum-home .lm-potential-card:nth-child(4) {
    background: linear-gradient(145deg, #fff0f4 0%, #ffdbe7 100%);
}

.lm-curriculum-home .lm-potential-card:nth-child(4) .lm-potential-icon {
    background: linear-gradient(135deg, #fb7185 0%, #e11d48 100%);
}

.lm-curriculum-home .lm-potential-card:nth-child(5) {
    background: linear-gradient(145deg, #fff7e8 0%, #ffe9c7 100%);
}

.lm-curriculum-home .lm-potential-card:nth-child(5) .lm-potential-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
}

.lm-curriculum-home .lm-potential-card:nth-child(6) {
    background: linear-gradient(145deg, #eefdf6 0%, #d7f8e7 100%);
}

.lm-curriculum-home .lm-potential-card:nth-child(6) .lm-potential-icon {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

.lm-curriculum-home .lm-potential-card:nth-child(7) {
    background: linear-gradient(145deg, #eefdf6 0%, #d4f7ea 100%);
}

.lm-curriculum-home .lm-potential-card:nth-child(7) .lm-potential-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.lm-curriculum-home .lm-potential-card:nth-child(8) {
    background: linear-gradient(145deg, #fff0f4 0%, #ffdbe7 100%);
}

.lm-curriculum-home .lm-potential-card:nth-child(8) .lm-potential-icon {
    background: linear-gradient(135deg, #fb7185 0%, #e11d48 100%);
}

.lm-curriculum-note-box {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 38px rgba(17, 51, 88, 0.1);
    transition:
        transform var(--lm-transition),
        box-shadow var(--lm-transition);
}

.lm-curriculum-note-box::before {
    content: "";
    position: absolute;
    inset: auto -2rem -2rem auto;
    width: 7rem;
    height: 7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    filter: blur(4px);
    pointer-events: none;
}

.lm-curriculum-note-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 46px rgba(17, 51, 88, 0.14);
}

.lm-curriculum-note-growth {
    background: linear-gradient(145deg, #eefdf6 0%, #d7f8e7 100%);
}

.lm-curriculum-note-closing {
    background: linear-gradient(145deg, #fff0f4 0%, #ffdbe7 100%);
}

.lm-home-quote {
    border: none;
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.9), transparent 35%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 246, 225, 0.88));
    box-shadow: none;
}

.lm-foundation-eyebrow {
    margin-bottom: 0.85rem;
}

.lm-foundation-heading {
    margin-bottom: 0;
}

.lm-foundation-copy {
    margin: 0 auto 24px;
    max-width: 680px;
    font-size: 17px;
    line-height: 1.7;
    color: #4a5a6a;
}

.lm-foundation-copy:last-child {
    margin-bottom: 0;
}

.lm-foundation-subheading {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: #0e2a47;
    text-align: center;
}

.lm-foundation-pillar {
    text-align: left;
    position: relative;
    overflow: hidden;
    padding: 2rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 1.5rem;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.88), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(237, 245, 255, 0.8));
    box-shadow: 0 18px 36px rgba(17, 51, 88, 0.08);
    backdrop-filter: blur(10px);
    transition:
        transform var(--lm-transition),
        box-shadow var(--lm-transition),
        border-color var(--lm-transition);
    animation: lm-foundation-rise 0.8s ease both;
}

.lm-foundation-pillar::before {
    content: "";
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 6rem;
    height: 6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
}

.lm-foundation-pillar:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 42px rgba(17, 51, 88, 0.12);
    border-color: rgba(66, 133, 244, 0.22);
}

.lm-foundation-home .lg\:grid-cols-3 > :nth-child(2) {
    animation-delay: 0.12s;
}

.lm-foundation-home .lg\:grid-cols-3 > :nth-child(3) {
    animation-delay: 0.22s;
}

.lm-foundation-visual {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.lm-foundation-visual img {
    filter: drop-shadow(0 20px 30px rgba(17, 51, 88, 0.16));
    animation: lm-foundation-float 6s ease-in-out infinite;
}

.lm-foundation-visual-base {
    position: absolute;
    bottom: 0;
    width: 240px;
    height: 120px;
    border-radius: 999px 999px 0 0;
    background: #f79ac6;
}

.lm-foundation-visual-dots {
    position: absolute;
    top: 12px;
    right: 48px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 10px solid rgba(187, 204, 235, 0.75);
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(28deg);
}

.lm-foundation-visual-dots::before,
.lm-foundation-visual-dots::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: #dce7f7;
}

.lm-foundation-visual-dots::before {
    width: 18px;
    height: 18px;
    top: 8px;
    left: 12px;
}

.lm-foundation-visual-dots::after {
    width: 12px;
    height: 12px;
    top: 34px;
    left: -6px;
}

.lm-foundation-skill {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
    padding: 0.8rem 0.9rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 24px rgba(17, 51, 88, 0.04);
    transition:
        transform var(--lm-transition),
        box-shadow var(--lm-transition),
        background-color var(--lm-transition);
    animation: lm-foundation-rise 0.8s ease both;
}

.lm-foundation-skill:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(17, 51, 88, 0.08);
    background: rgba(255, 255, 255, 0.72);
}

.lm-foundation-skill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    font-size: 18px;
}

.lm-foundation-skill:nth-child(1) .lm-foundation-skill-icon {
    color: #f59e0b;
}

.lm-foundation-skill:nth-child(2) .lm-foundation-skill-icon {
    color: #6366f1;
}

.lm-foundation-skill:nth-child(3) .lm-foundation-skill-icon {
    color: #ef4444;
}

.lm-foundation-skill:nth-child(4) .lm-foundation-skill-icon {
    color: #ec4899;
}

.lm-foundation-skill:nth-child(5) .lm-foundation-skill-icon {
    color: #84cc16;
}

.lm-foundation-skill:nth-child(6) .lm-foundation-skill-icon {
    color: #14b8a6;
}

.lm-foundation-home .sm\:grid-cols-2 > :nth-child(2) {
    animation-delay: 0.08s;
}

.lm-foundation-home .sm\:grid-cols-2 > :nth-child(3) {
    animation-delay: 0.16s;
}

.lm-foundation-home .sm\:grid-cols-2 > :nth-child(4) {
    animation-delay: 0.24s;
}

.lm-foundation-home .sm\:grid-cols-2 > :nth-child(5) {
    animation-delay: 0.32s;
}

.lm-foundation-home .sm\:grid-cols-2 > :nth-child(6) {
    animation-delay: 0.4s;
}

.lm-foundation-closing {
    margin: 0;
    font-size: 22px;
    font-weight: 500;
    color: #0e2a47;
}

.lm-endure-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 24px;
}

.lm-endure-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #e6eef7;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    padding: 28px;
    box-shadow: 0 12px 28px rgba(18, 50, 87, 0.05);
    transition:
        transform var(--lm-transition),
        background-color var(--lm-transition),
        border-color var(--lm-transition),
        box-shadow var(--lm-transition);
    animation: lm-foundation-rise 0.85s ease both;
}

.lm-endure-card:hover {
    background: #ffffff;
    border-color: #d8e4f2;
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(18, 50, 87, 0.09);
}

.lm-endure-card::before {
    content: "";
    position: absolute;
    top: -34px;
    right: -28px;
    width: 96px;
    height: 96px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    filter: blur(2px);
    pointer-events: none;
}

.lm-endure-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 16px;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(18, 50, 87, 0.08);
}

.lm-endure-card h4 {
    margin: 0;
    font-family: "Manrope", "Nunito", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
    color: #0e2a47;
    letter-spacing: 0;
}

.lm-endure-card p {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.55;
    color: #6a7886;
}

.lm-foundation-home .lm-endure-grid > :nth-child(2) {
    animation-delay: 0.08s;
}

.lm-foundation-home .lm-endure-grid > :nth-child(3) {
    animation-delay: 0.16s;
}

.lm-foundation-home .lm-endure-grid > :nth-child(4) {
    animation-delay: 0.24s;
}

.lm-foundation-home .lm-endure-grid > :nth-child(5) {
    animation-delay: 0.32s;
}

.lm-foundation-home .lm-endure-grid > :nth-child(6) {
    animation-delay: 0.4s;
}

@keyframes lm-foundation-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes lm-foundation-glow {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translate3d(-14px, 16px, 0) scale(1.08);
        opacity: 1;
    }
}

@keyframes lm-foundation-rise {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lm-endure-card--1 {
    background: linear-gradient(145deg, #f8fbff 0%, #edf5ff 100%);
}

.lm-endure-card--1 .lm-endure-icon {
    background: linear-gradient(135deg, #dfeeff 0%, #c7defc 100%);
    color: #2b67b1;
}

.lm-endure-card--2 {
    background: linear-gradient(145deg, #fffaf5 0%, #fff1dd 100%);
}

.lm-endure-card--2 .lm-endure-icon {
    background: linear-gradient(135deg, #ffe6c2 0%, #ffd59b 100%);
    color: #d97706;
}

.lm-endure-card--3 {
    background: linear-gradient(145deg, #f7fcf8 0%, #e7f8eb 100%);
}

.lm-endure-card--3 .lm-endure-icon {
    background: linear-gradient(135deg, #d4f4db 0%, #baeac6 100%);
    color: #22844e;
}

.lm-endure-card--4 {
    background: linear-gradient(145deg, #fff8fc 0%, #ffeaf4 100%);
}

.lm-endure-card--4 .lm-endure-icon {
    background: linear-gradient(135deg, #ffd9ea 0%, #ffc5de 100%);
    color: #d9468f;
}

.lm-endure-card--5 {
    background: linear-gradient(145deg, #f8fcff 0%, #ebf8ff 100%);
}

.lm-endure-card--5 .lm-endure-icon {
    background: linear-gradient(135deg, #d9f4ff 0%, #bfe8fb 100%);
    color: #0284c7;
}

.lm-endure-card--6 {
    background: linear-gradient(145deg, #fffdf6 0%, #fff4cf 100%);
}

.lm-endure-card--6 .lm-endure-icon {
    background: linear-gradient(135deg, #ffeeb2 0%, #ffe08a 100%);
    color: #b7791f;
}

.lm-foundation-underline {
    display: block;
    width: 80px;
    height: 3px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: #f4c430;
}

@media (max-width: 767px) {
    .lm-foundation-visual {
        min-height: 260px;
    }

    .lm-foundation-visual-base {
        width: 190px;
        height: 95px;
    }

    .lm-foundation-visual-dots {
        width: 110px;
        height: 110px;
        right: 30px;
    }
}

@media (min-width: 768px) {
    .lm-endure-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 30px;
        row-gap: 32px;
    }
}

@media (min-width: 1024px) {
    .lm-endure-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 30px;
        row-gap: 40px;
    }
}

.lm-google-reviews-shell {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    background: #f8fbff;
    padding: clamp(2rem, 4vw, 3.5rem);
    border: 1px solid rgba(42, 103, 167, 0.08);
}

.lm-google-reviews-label {
    margin-bottom: 0.85rem;
}

.lm-google-reviews-word {
    margin-left: 0.45rem;
    color: #177cc3;
}

.lm-google-reviews-wordmark {
    margin: 1.1rem 0 0;
    font-family: "Manrope", "Nunito", sans-serif;
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.lm-google-blue {
    color: #4285f4;
}

.lm-google-red {
    color: #ea4335;
}

.lm-google-yellow {
    color: #fbbc05;
}

.lm-google-green {
    color: #34a853;
}

.lm-google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

.lm-google-review-card {
    border: 1px solid #dce7f3;
    border-radius: 0.95rem;
    background: #ffffff;
    padding: 1.2rem 1.25rem 1.15rem;
    box-shadow: 0 10px 24px rgba(17, 51, 88, 0.04);
    transition:
        transform var(--lm-transition),
        box-shadow var(--lm-transition),
        border-color var(--lm-transition);
}

.lm-google-review-card:hover {
    transform: translateY(-3px);
    border-color: #c9dced;
    box-shadow: 0 16px 30px rgba(17, 51, 88, 0.08);
}

.lm-google-review-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.9rem;
}

.lm-google-review-user {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    min-width: 0;
}

.lm-google-review-avatar {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: linear-gradient(145deg, #dce7ff 0%, #eef4ff 100%);
    color: #5e88d6;
    font-size: 0.95rem;
}

.lm-google-review-user h3 {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 600;
    color: #243547;
    line-height: 1.3;
    letter-spacing: 0;
}

.lm-google-review-user p {
    margin: 0.18rem 0 0;
    font-size: 0.82rem;
    line-height: 1.35;
    color: #7b8a9a;
}

.lm-google-review-mini {
    flex: 0 0 auto;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
}

.lm-google-review-stars {
    margin-top: 0.7rem;
    display: flex;
    gap: 0.1rem;
    color: #f59e0b;
    font-size: 0.8rem;
}

.lm-google-review-copy {
    margin: 0.9rem 0 0;
    font-size: 0.98rem;
    line-height: 1.65;
    color: #42566c;
}

.lm-google-reviews-confetti {
    position: absolute;
    top: 1rem;
    width: 0;
    height: 0;
    border-left: 0.7rem solid transparent;
    border-right: 0.7rem solid transparent;
    border-bottom: 1.1rem solid #2eb6ef;
    transform: rotate(-12deg);
    opacity: 0.95;
}

.lm-google-reviews-confetti--one {
    left: 4rem;
}

.lm-google-reviews-confetti--two {
    left: 12rem;
    border-bottom-color: #10b8ef;
    transform: rotate(14deg);
}

.lm-google-reviews-confetti--three {
    right: 4.5rem;
    border-bottom-color: #1daee6;
    transform: rotate(-8deg);
}

.lm-director-photo {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.85), transparent 22%),
        linear-gradient(145deg, rgba(233, 244, 255, 0.96), rgba(255, 247, 232, 0.92));
    box-shadow: 0 30px 60px rgba(17, 51, 88, 0.16);
}

.lm-director-note {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
}

.lm-contact-card {
    border: 1px solid rgba(42, 103, 167, 0.08);
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(17, 51, 88, 0.08);
}

.lm-contact-form-card {
    border: 1px solid rgba(42, 103, 167, 0.08);
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(17, 51, 88, 0.08);
}

.lm-contact-row {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.lm-contact-row:last-of-type {
    padding-bottom: 0;
    border-bottom: 0;
}

.lm-contact-row-icon {
    border: 1px solid rgba(42, 103, 167, 0.1);
    background: linear-gradient(145deg, rgba(245, 250, 255, 1), rgba(232, 242, 255, 0.92));
    box-shadow: 0 10px 20px rgba(17, 51, 88, 0.06);
}

@media (min-width: 768px) {
    .lm-google-reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.15rem;
    }

    .lm-google-review-card--wide {
        grid-column: 1 / -1;
        max-width: 34rem;
        margin-inline: auto;
    }
}

.lm-site-footer {
    position: relative;
}

.lm-site-footer::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
}

.lm-footer-layout {
    position: relative;
}

.lm-footer-brand {
    position: relative;
}

.lm-footer-mark {
    box-shadow: 0 16px 28px rgba(61, 142, 216, 0.28);
}

.lm-footer-heading {
    letter-spacing: 0;
}

.lm-footer-list li {
    position: relative;
    padding-left: 0.95rem;
}

.lm-footer-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #66aef2, #f6b248);
}

.lm-footer-contact-item {
    align-items: flex-start;
}

.lm-footer-contact-icon {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lm-footer-bottom {
    position: relative;
}

.lm-floating-actions a,
.lm-mobile-quickbar a {
    backdrop-filter: blur(14px);
}

.lm-reveal {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.98);
    transition:
        opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--lm-delay, 0ms);
    will-change: opacity, transform;
}

.lm-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

@keyframes lm-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -14px, 0);
    }
}

@keyframes lm-rise {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    main section::before {
        width: 12rem;
        height: 12rem;
        right: -3.5rem;
    }

    main section::after {
        width: 9rem;
        height: 9rem;
        border-width: 14px;
    }

    .lm-hero-stage {
        min-height: 640px;
    }

    body.lm-site .lm-home-section {
        padding-top: 3.75rem !important;
        padding-bottom: 3.75rem !important;
    }

    body.lm-site .lm-foundation-home {
        padding-top: 4.5rem !important;
        padding-bottom: 4.5rem !important;
    }

    .lm-foundation-home .mt-\[80px\] {
        margin-top: 3rem !important;
    }
}

@media (max-width: 767px) {
    body.lm-site::before,
    body.lm-site::after,
    main section::before,
    main section::after {
        opacity: 0.45;
    }

    .lm-site-header.lm-scrolled {
        background: rgba(255, 255, 255, 0.96);
    }

    .lm-hero-stage {
        min-height: 500px;
    }

    .lm-hero-arrow {
        height: 2.75rem;
        width: 2.75rem;
    }

    .lm-hero-dots-wrap {
        padding: 0.65rem 0.9rem;
    }

    .lm-home-band {
        margin-top: -2.5rem;
    }

    .lm-home-overview,
    .lm-home-shell {
        padding: 1.25rem;
    }

    body.lm-site .lm-home-section {
        padding-top: 2.75rem !important;
        padding-bottom: 2.75rem !important;
    }

    body.lm-site .lm-foundation-home {
        padding-top: 3.25rem !important;
        padding-bottom: 3.25rem !important;
    }

    body.lm-site .lm-home-section .lm-section-heading {
        margin-bottom: 1.5rem !important;
    }

    body.lm-site .lm-home-section .lm-section-heading h2,
    body.lm-site .lm-foundation-heading,
    .lm-unified-section-title,
    .lm-google-reviews-wordmark {
        line-height: 1.12;
    }

    .lm-google-reviews-word {
        display: block;
        margin: 0.25rem 0 0;
    }

    .lm-google-reviews-confetti {
        display: none;
    }

    .lm-google-reviews-shell,
    .lm-safety-ref-shell,
    .lm-home-shell,
    .lm-contact-card,
    .lm-contact-form-card {
        padding: 1.2rem !important;
        border-radius: 1.35rem;
    }

    .lm-google-reviews-grid,
    .lm-safety-ref-grid,
    .lm-endure-grid,
    #home-contact .grid,
    .lm-foundation-home .grid {
        gap: 1rem !important;
    }

    .lm-foundation-home .mt-\[80px\],
    .lm-foundation-home .mt-16,
    .lm-foundation-home .mt-12,
    .lm-foundation-home .mt-10,
    .lm-google-reviews-shell .mt-10,
    .lm-safety-ref-shell .mt-8,
    .lm-safety-ref-shell .md\:mt-10,
    #home-contact .mt-10 {
        margin-top: 1.5rem !important;
    }

    .lm-foundation-copy {
        margin-bottom: 1rem;
        font-size: 15px;
        line-height: 1.6;
    }

    .lm-program-grid-card,
    .lm-why-grid-card,
    .lm-method-card,
    .lm-potential-card,
    .lm-endure-card,
    .lm-google-review-card,
    .lm-safety-ref-card {
        border-radius: 1.1rem;
    }

    .lm-program-grid-media {
        height: 180px;
    }

    .lm-safety-ref-card {
        min-height: auto;
        padding: 1.35rem 0.9rem 1.15rem;
    }

    .lm-safety-ref-icon {
        width: 4rem;
        height: 4rem;
        margin-bottom: 1rem;
        font-size: 1.8rem;
    }

    .lm-google-review-card {
        padding: 1rem;
    }

    .lm-google-review-copy {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .lm-director-photo {
        padding: 0.85rem !important;
    }

    .lm-director-photo img {
        min-height: 240px;
        object-fit: cover;
    }

    .lm-director-note {
        position: static;
        display: inline-flex;
        margin-top: 0.75rem;
    }

    .lm-contact-row {
        padding-bottom: 0.75rem;
    }

    .lm-footer-layout {
        gap: 2.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
        scroll-behavior: auto !important;
    }

    .lm-reveal,
    .lm-reveal.is-visible,
    #lm-hero-carousel .lm-hero-content > * {
        opacity: 1 !important;
        transform: none !important;
    }
}
