@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

.lma-selection::selection {
    background: #2D9CFF;
    color: #ffffff;
}

:root {
    --lma-primary-midnight: #07101C;
    --lma-primary-federal: #0E1A2B;
    --lma-accent-blue: #2D9CFF;
    --lma-accent-violet: #6E44FF;
    --lma-accent-magenta: #C64BFF;
    --lma-neutral-soft: #F4F6FA;
    --lma-neutral-cool: #E5E8EE;
    --lma-neutral-charcoal: #222A36;
    --lma-neutral-white: #FFFFFF;
    --lma-heading-font: "Space Grotesk", sans-serif;
    --lma-body-font: "Inter", sans-serif;
}

body.lma-no-margin {
    margin: 0;
}

.lma-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 640px) {
    .lma-container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .lma-container {
        padding: 0 3rem;
    }
}

/* Navbar */
.lma-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
    border-bottom: 1px solid transparent;
}

@media (min-width: 768px) {
    .lma-navbar {
        padding: 1.25rem 0;
    }
}

@media (min-width: 1024px) {
    .lma-navbar {
        padding: 1.5rem 0;
    }
}

.lma-navbar.scrolled {
    /* Fallback for browsers without backdrop-filter support */
    background: rgba(7, 16, 28, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 0;
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Glassmorphism for browsers that support backdrop-filter */
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
    .lma-navbar.scrolled {
        background: linear-gradient(
            135deg,
            rgba(7, 16, 28, 0.75) 0%,
            rgba(14, 26, 43, 0.7) 50%,
            rgba(7, 16, 28, 0.75) 100%
        );
        backdrop-filter: blur(24px) saturate(180%);
        -webkit-backdrop-filter: blur(24px) saturate(180%);
    }
}

@media (min-width: 768px) {
    .lma-navbar.scrolled {
        padding: 1rem 0;
    }
}

@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
    @media (min-width: 768px) {
        .lma-navbar.scrolled {
            backdrop-filter: blur(28px) saturate(180%);
            -webkit-backdrop-filter: blur(28px) saturate(180%);
        }
    }
}

.lma-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lma-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-family: var(--lma-heading-font);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.03em;
}

.lma-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.lma-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.lma-logo-title {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.03em;
}

.lma-logo-tagline {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #E9B743;
    margin-top: 0.125rem;
}

@media (min-width: 768px) {
    .lma-logo {
        gap: 0.875rem;
    }

    .lma-logo-img {
        width: 44px;
        height: 44px;
    }

    .lma-logo-title {
        font-size: 1.125rem;
    }

    .lma-logo-tagline {
        font-size: 0.7rem;
        margin-top: 0.1875rem;
    }
}

@media (min-width: 1024px) {
    .lma-logo-img {
        width: 48px;
        height: 48px;
    }

    .lma-logo-title {
        font-size: 1.25rem;
    }

    .lma-logo-tagline {
        font-size: 0.75rem;
    }
}

.lma-logo-title span {
    color: #9ca3af;
    font-weight: 400;
}

.lma-nav-links {
    display: none;
    gap: 1.5rem;
    font-family: var(--lma-body-font);
    font-size: 0.875rem;
    font-weight: 500;
    color: #D1D5DB;
    align-items: center;
}

@media (min-width: 992px) {
    .lma-nav-links {
        gap: 2rem;
    }
}

.lma-nav-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lma-nav-links a:hover {
    color: #ffffff;
}

.lma-nav-cta {
    padding: 0.5rem 1rem;
    border-radius: 0.625rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font-family: var(--lma-body-font);
    font-size: 0.8125rem;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

@media (min-width: 992px) {
    .lma-nav-cta {
        padding: 0.5rem 1.25rem;
        border-radius: 0.75rem;
        font-size: 0.875rem;
    }
}

.lma-nav-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.lma-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.lma-nav-toggle span {
    font-size: 1.8rem;
    line-height: 1;
}

.lma-mobile-menu {
    position: fixed;
    inset: 0;
    background: #07101C;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.25rem;
    z-index: 40;
}

.lma-mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    font-family: var(--lma-body-font);
}

.lma-mobile-menu.open {
    display: flex;
}

@media (min-width: 768px) {
    .lma-nav-links {
        display: flex;
    }

    .lma-nav-toggle {
        display: none;
    }
}

/* Hero */
.lma-hero {
    position: relative;
    min-height: 100vh;
    /* Use svh (small viewport height) instead of dvh to prevent layout shifts
       when mobile browser UI appears/disappears during scrolling */
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--lma-primary-midnight);
    color: white;
    padding: 6rem 0 4rem;
}

@media (min-width: 768px) {
    .lma-hero {
        min-height: 100vh;
        min-height: 100svh;
        padding: 0;
    }
}

.lma-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #07101C, rgba(7,16,28,0.0), rgba(7,16,28,0.6));
    z-index: 0;
}

.lma-hero-inner {
    position: relative;
    z-index: 10;
    padding-top: 4rem;
    padding-bottom: 2rem;
    width: 100%;
}

@media (min-width: 768px) {
    .lma-hero-inner {
        padding-top: 6rem;
        padding-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .lma-hero-inner {
        padding-top: 0;
    }
}

.lma-hero-title {
    font-family: var(--lma-heading-font);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    max-width: 54rem;
}

@media (min-width: 768px) {
    .lma-hero-title {
        font-size: clamp(3rem, 6.5vw, 5.5rem);
        margin-bottom: 2rem;
    }
}

@media (min-width: 1200px) {
    .lma-hero-title {
        font-size: clamp(3.5rem, 5vw, 5.75rem);
    }
}

.lma-hero-gradient {
    background: linear-gradient(90deg, #2D9CFF, #6E44FF, #C64BFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lma-hero-text {
    font-family: var(--lma-body-font);
    font-size: 1.0625rem;
    font-weight: 500;
    color: #D1D5DB;
    max-width: 36rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    padding-left: 1.25rem;
    border-left: 3px solid #3B82F6;
}

@media (min-width: 768px) {
    .lma-hero-text {
        font-size: 1.1875rem;
        font-weight: 500;
        max-width: 40rem;
        margin-bottom: 2.5rem;
        padding-left: 1.5rem;
        line-height: 1.8;
    }
}

@media (min-width: 1024px) {
    .lma-hero-text {
        font-size: 1.25rem;
        max-width: 44rem;
        margin-bottom: 3rem;
    }
}

.lma-btn-row {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

@media (min-width: 640px) {
    .lma-btn-row {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
}

.lma-btn-primary {
    position: relative;
    overflow: hidden;
    padding: 0.875rem 1.75rem;
    border-radius: 0.75rem;
    font-family: var(--lma-body-font);
    font-weight: 500;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    color: #ffffff;
    background: linear-gradient(90deg, #2D9CFF, #6E44FF);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 640px) {
    .lma-btn-primary {
        padding: 1rem 2rem;
        border-radius: 0.85rem;
    }
}

@media (min-width: 768px) {
    .lma-btn-primary {
        padding: 1rem 2.5rem;
        border-radius: 0.9rem;
        font-size: 1rem;
    }
}

.lma-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(45, 156, 255, 0.5);
}

.lma-btn-primary span {
    position: relative;
    z-index: 10;
}

.lma-btn-primary .lma-btn-shine {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
}

.lma-btn-primary:hover .lma-btn-shine {
    transform: translateX(100%);
}

.lma-btn-secondary {
    padding: 0.875rem 1.75rem;
    border-radius: 0.75rem;
    font-family: var(--lma-body-font);
    font-weight: 500;
    font-size: 0.9375rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

@media (min-width: 640px) {
    .lma-btn-secondary {
        padding: 1rem 2rem;
        border-radius: 0.85rem;
    }
}

@media (min-width: 768px) {
    .lma-btn-secondary {
        padding: 1rem 2.5rem;
        border-radius: 0.9rem;
        font-size: 1rem;
    }
}

.lma-btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
}

.lma-scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: #6b7280;
    animation: lma-bounce 1.5s infinite;
    display: none;
}

@media (min-width: 768px) {
    .lma-scroll-indicator {
        display: block;
        bottom: 2.5rem;
    }
}

.lma-scroll-indicator-box {
    width: 20px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #4b5563;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.lma-scroll-indicator-dot {
    width: 4px;
    height: 6px;
    border-radius: 999px;
    background: #3B82F6;
}

@keyframes lma-bounce {
    0%, 100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -6px);
    }
}

/* Particle Canvas */
#lma-particle-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
}

/* Sections */
.lma-section {
    padding: 5rem 0;
    background: #ffffff;
}

@media (min-width: 768px) {
    .lma-section {
        padding: 7rem 0;
    }
}

@media (min-width: 1024px) {
    .lma-section {
        padding: 8rem 0;
    }
}

.lma-section-alt {
    background: #F4F6FA;
}

.lma-section-heading-sub {
    font-family: var(--lma-body-font);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563EB;
}

.lma-section-heading-sub span {
    display: inline-block;
    height: 1px;
    width: 2rem;
    background: #2563EB;
}

.lma-section-heading-title {
    font-family: var(--lma-heading-font);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: #07101C;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .lma-section-heading-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
}

/* Who We Serve */
.lma-grid-2 {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .lma-grid-2 {
        gap: 3rem;
    }
}

@media (min-width: 992px) {
    .lma-grid-2 {
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 4rem;
        align-items: start;
    }
}

@media (min-width: 1200px) {
    .lma-grid-2 {
        gap: 5rem;
    }
}

.lma-text-lg {
    font-family: var(--lma-body-font);
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .lma-text-lg {
        font-size: 1.05rem;
        margin-bottom: 2rem;
        margin-top: 1.25rem;
    }
}

.lma-growth-gap {
    padding: 1.25rem;
    background: #F4F6FA;
    border-radius: 1rem;
    border: 1px solid #E5E8EE;
    font-family: var(--lma-body-font);
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .lma-growth-gap {
        padding: 1.5rem;
        margin-top: 0;
    }
}

.lma-growth-gap h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 700;
    color: #07101C;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lma-growth-gap p {
    margin: 0;
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.6;
}

/* Check cards container */
.lma-grid-2 > div:last-child > div {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .lma-grid-2 > div:last-child > div {
        gap: 0.875rem;
    }
}

.lma-check-card {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem 1.125rem;
    border-radius: 0.875rem;
    border: 1px solid #F3F4F6;
    background: #ffffff;
    transition: all 0.25s ease;
}

@media (min-width: 768px) {
    .lma-check-card {
        gap: 1rem;
        padding: 1.25rem;
        border-radius: 1rem;
    }
}

.lma-check-badge {
    flex-shrink: 0;
    margin-top: 0.125rem;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #EFF6FF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #3B82F6;
}

.lma-check-card span {
    font-family: var(--lma-body-font);
    font-size: 0.9rem;
    color: #111827;
    font-weight: 500;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .lma-check-card span {
        font-size: 0.95rem;
    }
}

.lma-check-card:hover {
    border-color: #BFDBFE;
    background: rgba(59,130,246,0.04);
    transform: translateY(-2px);
}

/* What We Do - Service Cards */
.lma-service-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .lma-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (min-width: 992px) {
    .lma-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
        margin-top: 3rem;
    }
}

@media (min-width: 1200px) {
    .lma-service-grid {
        gap: 2rem;
    }
}

.lma-service-card {
    position: relative;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 1.25rem;
    border: 1px solid #F3F4F6;
    box-shadow: 0 8px 30px rgba(15,23,42,0.03);
    transition: all 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .lma-service-card {
        padding: 1.75rem;
        border-radius: 1.5rem;
    }
}

@media (min-width: 992px) {
    .lma-service-card {
        padding: 2rem;
    }
}

.lma-service-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: #F4F6FA;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #2563EB;
}

@media (min-width: 768px) {
    .lma-service-icon {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1.5rem;
        font-size: 1.3rem;
    }
}

.lma-service-title {
    font-family: var(--lma-heading-font);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #07101C;
}

@media (min-width: 768px) {
    .lma-service-title {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }
}

.lma-service-desc {
    font-family: var(--lma-body-font);
    font-size: 0.875rem;
    color: #4B5563;
    line-height: 1.65;
}

@media (min-width: 768px) {
    .lma-service-desc {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

.lma-service-card:hover {
    border-color: rgba(37,99,235,0.4);
    box-shadow: 0 18px 45px rgba(15,23,42,0.12);
    transform: translateY(-3px);
}

/* Framework */
.lma-framework-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .lma-framework-grid {
        gap: 3rem;
    }
}

@media (min-width: 992px) {
    .lma-framework-grid {
        gap: 4rem;
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }
}

@media (min-width: 1200px) {
    .lma-framework-grid {
        gap: 5rem;
    }
}

.lma-framework-sticky {
    position: static;
}

@media (min-width: 992px) {
    .lma-framework-sticky {
        position: sticky;
        top: 6rem;
        align-self: flex-start;
    }
}

@media (min-width: 1200px) {
    .lma-framework-sticky {
        top: 7rem;
    }
}

.lma-framework-step {
    position: relative;
    padding-left: 2.75rem;
    padding-bottom: 2rem;
    font-family: var(--lma-body-font);
}

@media (min-width: 768px) {
    .lma-framework-step {
        padding-left: 3rem;
        padding-bottom: 2.5rem;
    }
}

@media (min-width: 992px) {
    .lma-framework-step {
        padding-bottom: 3rem;
    }
}

.lma-framework-step:last-child {
    padding-bottom: 0;
}

.lma-framework-line {
    position: absolute;
    left: 1.125rem;
    top: 2.25rem;
    bottom: 0;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(to bottom, #3B82F6, #8B5CF6);
    opacity: 0.85;
}

@media (min-width: 768px) {
    .lma-framework-line {
        left: 1.25rem;
        top: 2.5rem;
    }
}

.lma-framework-step:last-child .lma-framework-line {
    display: none;
}

.lma-framework-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    border: 2px solid #3B82F6;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #2563EB;
    box-shadow: 0 10px 25px rgba(15,23,42,0.1);
}

@media (min-width: 768px) {
    .lma-framework-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.85rem;
    }
}

.lma-framework-step h3 {
    margin: 0 0 0.75rem 0;
    font-family: var(--lma-heading-font);
    font-size: 1.2rem;
    color: #07101C;
}

@media (min-width: 768px) {
    .lma-framework-step h3 {
        margin: 0 0 1rem 0;
        font-size: 1.4rem;
    }
}

.lma-framework-main {
    margin: 0 0 0.5rem 0;
    font-size: 0.925rem;
    color: #374151;
    font-weight: 600;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .lma-framework-main {
        margin: 0 0 0.65rem 0;
        font-size: 0.98rem;
    }
}

.lma-framework-sub {
    margin: 0;
    font-size: 0.85rem;
    color: #6B7280;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .lma-framework-sub {
        font-size: 0.9rem;
    }
}

/* Reveal On Scroll */
.lma-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.lma-reveal.lma-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Why It Works */
.lma-why {
    background: #07101C;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.lma-why-grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image: linear-gradient(#2D9CFF 1px, transparent 1px),
    linear-gradient(90deg, #2D9CFF 1px, transparent 1px);
    background-size: 40px 40px;
}

@media (min-width: 768px) {
    .lma-why-grid-bg {
        background-size: 50px 50px;
    }
}

.lma-why-card-grid {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .lma-why-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (min-width: 992px) {
    .lma-why-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
        margin-top: 3rem;
    }
}

@media (min-width: 1200px) {
    .lma-why-card-grid {
        gap: 1.75rem;
    }
}

.lma-why-card {
    background: #0E1A2B;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    height: 100%;
    transition: border-color 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .lma-why-card {
        padding: 1.75rem;
    }
}

@media (min-width: 992px) {
    .lma-why-card {
        padding: 2rem;
    }
}

.lma-why-card:hover {
    border-color: rgba(59,130,246,0.7);
    transform: translateY(-3px);
}

.lma-why-card-bar {
    height: 4px;
    width: 2.5rem;
    background-image: linear-gradient(90deg, #3B82F6, #8B5CF6);
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .lma-why-card-bar {
        width: 3rem;
        margin-bottom: 1.5rem;
    }
}

.lma-why-card h4 {
    margin: 0 0 0.625rem 0;
    font-family: var(--lma-heading-font);
    font-size: 1.05rem;
}

@media (min-width: 768px) {
    .lma-why-card h4 {
        margin: 0 0 0.75rem 0;
        font-size: 1.1rem;
    }
}

.lma-why-card p {
    margin: 0;
    font-family: var(--lma-body-font);
    font-size: 0.875rem;
    color: #9CA3AF;
    line-height: 1.65;
}

@media (min-width: 768px) {
    .lma-why-card p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

/* Meet the Team */
.lma-team {
    background: #ffffff;
}

.lma-team-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem auto;
}

@media (min-width: 768px) {
    .lma-team-header {
        margin-bottom: 4rem;
    }
}

.lma-team-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .lma-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .lma-team-grid {
        gap: 3rem;
    }
}

.lma-team-card {
    background: linear-gradient(135deg, #F4F6FA 0%, #ffffff 100%);
    border-radius: 1.5rem;
    border: 1px solid #E5E8EE;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (min-width: 768px) {
    .lma-team-card {
        border-radius: 1.75rem;
    }
}

.lma-team-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
    transform: translateY(-4px);
}

.lma-team-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #0E1A2B 0%, #07101C 100%);
}

.lma-team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.lma-team-card:hover .lma-team-image {
    transform: scale(1.03);
}

.lma-team-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 16, 28, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.lma-team-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

@media (min-width: 640px) {
    .lma-team-content {
        padding: 1.75rem;
    }
}

@media (min-width: 768px) {
    .lma-team-content {
        padding: 2rem;
    }
}

.lma-team-name {
    font-family: var(--lma-heading-font);
    font-size: 1.25rem;
    font-weight: 700;
    color: #07101C;
    margin: 0 0 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .lma-team-name {
        font-size: 1.4rem;
        margin-bottom: 0.35rem;
    }
}

.lma-team-title {
    font-family: var(--lma-body-font);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2563EB;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .lma-team-title {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }
}

.lma-team-bio {
    font-family: var(--lma-body-font);
    font-size: 0.9rem;
    color: #4B5563;
    line-height: 1.75;
    flex: 1;
}

@media (min-width: 768px) {
    .lma-team-bio {
        font-size: 0.925rem;
        line-height: 1.8;
    }
}

.lma-team-bio p {
    margin: 0 0 1rem 0;
}

.lma-team-bio p:last-child {
    margin-bottom: 0;
}

.lma-team-divider {
    height: 3px;
    width: 3rem;
    background: linear-gradient(90deg, #2D9CFF, #6E44FF);
    border-radius: 999px;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .lma-team-divider {
        width: 3.5rem;
        margin-bottom: 1.25rem;
    }
}

/* Outcomes */
.lma-outcomes-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .lma-outcomes-grid {
        gap: 3rem;
    }
}

@media (min-width: 992px) {
    .lma-outcomes-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
        align-items: center;
        gap: 4rem;
    }
}

@media (min-width: 1200px) {
    .lma-outcomes-grid {
        gap: 5rem;
    }
}

.lma-outcomes-list-item {
    display: flex;
    gap: 0.875rem;
    margin-bottom: 0.75rem;
    font-family: var(--lma-body-font);
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .lma-outcomes-list-item {
        gap: 1rem;
        margin-bottom: 0.9rem;
        font-size: 0.95rem;
    }
}

.lma-outcomes-badge {
    flex-shrink: 0;
    margin-top: 0.125rem;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #EEF2FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #6D28D9;
}

.lma-outcomes-card {
    position: relative;
    background: linear-gradient(135deg, #F4F6FA, #ffffff);
    border-radius: 1.5rem;
    border: 1px solid #E5E7EB;
    padding: 1.75rem;
    box-shadow: 0 18px 45px rgba(15,23,42,0.08);
    overflow: hidden;
}

@media (min-width: 768px) {
    .lma-outcomes-card {
        padding: 2rem;
        border-radius: 1.75rem;
    }
}

@media (min-width: 992px) {
    .lma-outcomes-card {
        padding: 2.5rem;
        border-radius: 2rem;
    }
}

.lma-outcomes-card::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -30%;
    width: 250px;
    height: 250px;
    background: rgba(59,130,246,0.08);
    border-radius: 999px;
    filter: blur(60px);
}

@media (min-width: 768px) {
    .lma-outcomes-card::before {
        width: 300px;
        height: 300px;
    }
}

.lma-outcomes-card h4 {
    position: relative;
    z-index: 1;
    margin: 0 0 1.25rem 0;
    font-family: var(--lma-heading-font);
    font-size: 1.25rem;
    color: #07101C;
}

@media (min-width: 768px) {
    .lma-outcomes-card h4 {
        margin: 0 0 1.5rem 0;
        font-size: 1.5rem;
    }
}

.lma-outcomes-quote {
    position: relative;
    z-index: 1;
    font-family: var(--lma-body-font);
    font-size: 1rem;
    color: #4B5563;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .lma-outcomes-quote {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

.lma-outcomes-footer {
    position: relative;
    z-index: 1;
    padding-top: 1.25rem;
    border-top: 1px solid #E5E7EB;
    display: flex;
    gap: 0.875rem;
    align-items: center;
}

@media (min-width: 768px) {
    .lma-outcomes-footer {
        padding-top: 1.5rem;
        gap: 1rem;
    }
}

.lma-outcomes-avatar {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background: #07101C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lma-heading-font);
    font-weight: 700;
    color: #ffffff;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .lma-outcomes-avatar {
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
    }
}

.lma-outcomes-meta-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111827;
}

@media (min-width: 768px) {
    .lma-outcomes-meta-title {
        font-size: 0.95rem;
    }
}

.lma-outcomes-meta-sub {
    font-size: 0.75rem;
    color: #6B7280;
}

@media (min-width: 768px) {
    .lma-outcomes-meta-sub {
        font-size: 0.8rem;
    }
}

/* CTA */
.lma-cta {
    position: relative;
    padding: 5rem 0;
    background: #07101C;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .lma-cta {
        padding: 6rem 0;
    }
}

@media (min-width: 992px) {
    .lma-cta {
        padding: 8rem 0;
    }
}

.lma-cta-bg1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(30,64,175,0.4), rgba(76,29,149,0.4));
    mix-blend-mode: screen;
    opacity: 0.5;
}

.lma-cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .lma-cta-content {
        max-width: 48rem;
        padding: 0;
    }
}

.lma-cta-title {
    font-family: var(--lma-heading-font);
    font-size: clamp(1.75rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .lma-cta-title {
        margin-bottom: 2rem;
        line-height: 1.2;
    }
}

.lma-cta-gradient {
    background: linear-gradient(90deg, #2D9CFF, #6E44FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lma-cta-text {
    font-family: var(--lma-body-font);
    font-size: 0.95rem;
    color: #9CA3AF;
    max-width: 28rem;
    margin: 0 auto 2rem auto;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .lma-cta-text {
        font-size: 1.05rem;
        max-width: 32rem;
        margin: 0 auto 3rem auto;
    }
}

.lma-cta-btn-row {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .lma-cta-btn-row {
        flex-direction: row;
        gap: 1rem;
    }
}

.lma-btn-ghost {
    padding: 1rem 2.25rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(255,255,255,0.25);
    background: transparent;
    color: #ffffff;
    font-family: var(--lma-body-font);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

@media (min-width: 768px) {
    .lma-btn-ghost {
        padding: 1.1rem 2.7rem;
        border-radius: 1rem;
        font-size: 1rem;
    }
}

.lma-btn-ghost:hover {
    background: rgba(255,255,255,0.1);
}

/* Footer */
.lma-footer {
    background: #050B14;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 3rem 0;
    color: #6B7280;
    font-family: var(--lma-body-font);
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .lma-footer {
        padding: 4rem 0;
    }
}

@media (min-width: 992px) {
    .lma-footer {
        padding: 5rem 0;
    }
}

.lma-footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .lma-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }
}

@media (min-width: 768px) {
    .lma-footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 992px) {
    .lma-footer-grid {
        gap: 3rem;
        margin-bottom: 3rem;
    }
}

.lma-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: #ffffff;
    font-family: var(--lma-heading-font);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.lma-footer-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.lma-footer-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.lma-footer-logo-title {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.03em;
}

.lma-footer-logo-title span {
    color: #4B5563;
    font-weight: 400;
}

.lma-footer-logo-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #E9B743;
    margin-top: 0.1875rem;
}

@media (min-width: 768px) {
    .lma-footer-logo {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .lma-footer-logo-img {
        width: 56px;
        height: 56px;
    }

    .lma-footer-logo-title {
        font-size: 1.5rem;
    }

    .lma-footer-logo-tagline {
        font-size: 0.8rem;
        margin-top: 0.25rem;
    }
}

.lma-footer-text {
    max-width: 18rem;
    color: #9CA3AF;
    line-height: 1.6;
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .lma-footer-text {
        font-size: 0.85rem;
    }
}

.lma-footer-heading {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .lma-footer-heading {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

.lma-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lma-footer-links li {
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .lma-footer-links li {
        margin-bottom: 0.6rem;
    }
}

.lma-footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .lma-footer-links a {
        font-size: 0.85rem;
    }
}

.lma-footer-links a:hover {
    color: #60A5FA;
}

.lma-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: space-between;
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .lma-footer-bottom {
        flex-direction: row;
        align-items: center;
        padding-top: 1.5rem;
        gap: 1rem;
        font-size: 0.85rem;
    }
}

.lma-footer-bottom-links {
    display: flex;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .lma-footer-bottom-links {
        gap: 1.5rem;
    }
}

.lma-footer-bottom-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lma-footer-bottom-links a:hover {
    color: #ffffff;
}

/* Disable scroll reveal if JS isn't running */
.lma-reveal {
    opacity: 1 !important;
    transform: none !important;
}

/* Make sure the root block itself isn't adding weird padding */
#lma-landing-root {
    margin: 0;
    padding: 0;
}

/* In case GHL adds global padding to sections */
#lma-landing-root .lma-hero,
#lma-landing-root .lma-section,
#lma-landing-root .lma-cta,
#lma-landing-root .lma-footer {
    margin: 0;
}

/* Make sure the page background matches the hero so you don't get a white strip */
body {
    background-color: #050B14;
}


/* Contact Us Section */
.lma-contact {
    background: #07101C;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .lma-contact {
        padding: 6rem 0;
    }
}

@media (min-width: 992px) {
    .lma-contact {
        padding: 7rem 0;
    }
}

.lma-contact-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(45, 156, 255, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(110, 68, 255, 0.08) 0%, transparent 50%);
}

.lma-contact-grid {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .lma-contact-grid {
        gap: 3rem;
    }
}

@media (min-width: 992px) {
    .lma-contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap: 4rem;
    }
}

@media (min-width: 1200px) {
    .lma-contact-grid {
        gap: 5rem;
    }
}

.lma-contact-sub {
    color: #60A5FA;
}

.lma-contact-sub span {
    background: #60A5FA;
}

.lma-contact-title {
    font-family: var(--lma-heading-font);
    font-size: clamp(1.75rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .lma-contact-title {
        margin-bottom: 1.5rem;
    }
}

.lma-contact-gradient {
    background: linear-gradient(90deg, #2D9CFF, #6E44FF, #C64BFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lma-contact-text {
    font-family: var(--lma-body-font);
    font-size: 0.95rem;
    color: #9CA3AF;
    line-height: 1.75;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .lma-contact-text {
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 2.5rem;
    }
}

.lma-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .lma-contact-info {
        gap: 1.5rem;
    }
}

.lma-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

@media (min-width: 768px) {
    .lma-contact-info-item {
        gap: 1rem;
    }
}

.lma-contact-info-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .lma-contact-info-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.2rem;
    }
}

.lma-contact-info-label {
    font-family: var(--lma-body-font);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6B7280;
    margin-bottom: 0.2rem;
}

@media (min-width: 768px) {
    .lma-contact-info-label {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }
}

.lma-contact-info-value {
    font-family: var(--lma-body-font);
    font-size: 0.9375rem;
    color: #ffffff;
    font-weight: 500;
}

@media (min-width: 768px) {
    .lma-contact-info-value {
        font-size: 1rem;
    }
}

/* Contact Form */
.lma-contact-form {
    background: rgba(14, 26, 43, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

@media (min-width: 640px) {
    .lma-contact-form {
        padding: 2rem;
        border-radius: 1.375rem;
    }
}

@media (min-width: 768px) {
    .lma-contact-form {
        padding: 2.5rem;
        border-radius: 1.5rem;
    }
}

.lma-form-group {
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .lma-form-group {
        margin-bottom: 1.5rem;
    }
}

.lma-form-label {
    display: block;
    font-family: var(--lma-body-font);
    font-size: 0.875rem;
    font-weight: 600;
    color: #D1D5DB;
    margin-bottom: 0.5rem;
}

.lma-form-input,
.lma-form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(7, 16, 28, 0.6);
    color: #ffffff;
    font-family: var(--lma-body-font);
    font-size: 1rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.lma-form-input::placeholder,
.lma-form-textarea::placeholder {
    color: #6B7280;
}

.lma-form-input:focus,
.lma-form-textarea:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.lma-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.lma-form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .lma-form-submit {
        width: auto;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

/* Base animation states - elements start hidden */
[data-scroll-animate] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Fade Up Animation */
[data-scroll-animate="fade-up"] {
    transform: translateY(40px);
}

[data-scroll-animate="fade-up"].lma-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Animation */
[data-scroll-animate="fade-in"] {
    transform: scale(0.98);
}

[data-scroll-animate="fade-in"].lma-animated {
    opacity: 1;
    transform: scale(1);
}

/* Slide In Left Animation */
[data-scroll-animate="slide-left"] {
    transform: translateX(-50px);
}

[data-scroll-animate="slide-left"].lma-animated {
    opacity: 1;
    transform: translateX(0);
}

/* Slide In Right Animation */
[data-scroll-animate="slide-right"] {
    transform: translateX(50px);
}

[data-scroll-animate="slide-right"].lma-animated {
    opacity: 1;
    transform: translateX(0);
}

/* Scale Up Animation */
[data-scroll-animate="scale-up"] {
    transform: scale(0.9);
}

[data-scroll-animate="scale-up"].lma-animated {
    opacity: 1;
    transform: scale(1);
}

/* Blur In Animation */
[data-scroll-animate="blur-in"] {
    transform: translateY(20px);
    filter: blur(10px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll-animate="blur-in"].lma-animated {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Stagger children animation for grids/lists */
[data-scroll-stagger] > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll-stagger].lma-animated > *:nth-child(1) { transition-delay: 0ms; }
[data-scroll-stagger].lma-animated > *:nth-child(2) { transition-delay: 100ms; }
[data-scroll-stagger].lma-animated > *:nth-child(3) { transition-delay: 200ms; }
[data-scroll-stagger].lma-animated > *:nth-child(4) { transition-delay: 300ms; }
[data-scroll-stagger].lma-animated > *:nth-child(5) { transition-delay: 400ms; }
[data-scroll-stagger].lma-animated > *:nth-child(6) { transition-delay: 500ms; }

[data-scroll-stagger].lma-animated > * {
    opacity: 1;
    transform: translateY(0);
}

/* Animation delay utilities */
[data-scroll-delay="100"] { transition-delay: 100ms !important; }
[data-scroll-delay="200"] { transition-delay: 200ms !important; }
[data-scroll-delay="300"] { transition-delay: 300ms !important; }
[data-scroll-delay="400"] { transition-delay: 400ms !important; }
[data-scroll-delay="500"] { transition-delay: 500ms !important; }

/* Hero-specific animations - already visible, no scroll trigger needed */
.lma-hero [data-scroll-animate] {
    opacity: 1;
    transform: none;
    filter: none;
}

/* Hero entrance animations on page load */
.lma-hero .lma-hero-title {
    animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.lma-hero .lma-hero-text {
    animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.lma-hero .lma-btn-row {
    animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.lma-hero .lma-scroll-indicator {
    animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Parallax effect for section backgrounds */
[data-scroll-parallax] {
    transition: transform 0.1s linear;
}

/* Card hover enhancements that complement scroll animations */
.lma-service-card.lma-animated,
.lma-why-card.lma-animated,
.lma-check-card.lma-animated {
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.3s ease,
                border-color 0.2s ease,
                box-shadow 0.2s ease;
}

/* Framework step reveal animation */
.lma-framework-step[data-scroll-animate] {
    opacity: 0;
    transform: translateX(-30px);
}

.lma-framework-step[data-scroll-animate].lma-animated {
    opacity: 1;
    transform: translateX(0);
}

/* Override the disabled reveal styles when animations are active */
.lma-animations-active .lma-reveal {
    opacity: 0 !important;
    transform: translateY(30px) !important;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.lma-animations-active .lma-reveal.lma-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Hero section reveal overrides */
.lma-animations-active .lma-hero .lma-reveal {
    opacity: 1 !important;
    transform: none !important;
}

/* ============================================
   REDUCED MOTION PREFERENCE
   Respects user's system preference for reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-scroll-animate],
    [data-scroll-stagger] > *,
    .lma-reveal {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }

    .lma-hero .lma-hero-title,
    .lma-hero .lma-hero-text,
    .lma-hero .lma-btn-row,
    .lma-hero .lma-scroll-indicator {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
